People say that using the cat
command dumping to a file is much faster than any other application such as dd
, so for the cloning of disks over 2tb I have used the command cat /dev/disk8 > /dev/disk9
, but how can I see the progress?, I read that it is possible using the pv
command, but only for byte streaming and not for direct dump or intermediary between reading and dump bash.
How can I do it using Linux and Unix platforms (OSX)?