Mirror Harddisks with Qparted-LiveCD
– Locally: Start up the system with the qparted-LiveCd.
dd if=/dev/hdx of=/dev/hdy bs=1M
– Over the net: Start up the system with Ubuntu LiveCd.
target:
ifconfig -a
nc -l -p 7000 | gzip -dfc | dd of=/dev/sdx bs=4M
source:
dd if=/dev/sdx bs=4M | gzip -cf | nc 192.168.0.120 7000 -q 10
Gee, I love dd. dd huuray!
Comment by Vince Black — September 1, 2008 @ 10:40 pm