I have 3 hard disks 1T each. I want to wipe them out completely. I decided yo use dd
like so:
dd if=/dev/zero of=/dev/sdb bs=1M
dd if=/dev/zero of=/dev/sdc bs=1M
dd if=/dev/zero of=/dev/sdd bs=1M
Since it takes a while for the commands to complete, can I assume that it will be faster if I open 3 different consoles and execute the commands simultaneously?
Will it be 3 times faster compared to executing them sequentially?