You will need a s-ATA to USB cable like this one |
In my case /dev/sdc is the source and /dev/sdd is the target hard disk.
Use this command to mirror the whole hard disk, bit per bit.
pv /dev/sdc | dd bs=128k of=/dev/sdd
Where /dev/sdc is the source- and /dev/sdd is the target-hard-disk!The dd command copies the hard disk bit per bit and the pv command adds a neat progress bar, because by default dd comes with no visual feedback.
For me it took like 3 hours to mirror all the data to my new USB-hard-disk.
1 Kommentare:
Nice info. Thanks you for going to my blog ;)
Kommentar veröffentlichen