clone disk whit dd
gennaio 6th, 2012
how to backup all disk of my pc? include MBR table? is easy use DD
first download RIPlinux o similar live distro
cat /dev/zero >> zero.fill ; sync ; sleep 1 ; sync ; rm -f zero.fill; sync
dd if=/dev/sda | gzip > disk.img.gz
and restore
dd if=disk.img of=/dev/sda
.
