Why are read / write sequential and not parallel

ddhard drive

I copy data from one disc to other

sudo dd status=progress if=/dev/sdc of=/dev/sdd ibs=1G obs=1G

But I notice that read/write are done sequential:

enter image description here

enter image description here

Is there a way to make it parallel to speed up coping?

Best Answer

This case is using multiple disks.

The program is single-buffering.

It needs to use double (or multiple) buffering.

https://en.wikipedia.org/wiki/Data_buffer

Related Question