Back-up/Restore the MBR (Master Boot Record)
Back-up
dd if=/dev/hda of=backup-mbr count=1 bs=512
Restore full (including existing partition table)
dd if=backup-mbr of=/dev/hda
Restore MBR (not including partition table entry)
dd of=/dev/hda if=backup-mbr bs=446 count=1
