MBR (Master Boot Record) backup and restore
Полезность с сайта shell-fu$
Резервная копия MBR:
dd if=/dev/sda of=/root/mbr.img bs=1 count=512
Восстановление MBR:
dd if=/root/mbr.img of=/dev/sda bs=1 count=512
Восстановить только bootstrap (часть MBR):
dd if=/temp/mbr.img of=/dev/sda bs=1 count=446
Восстановление только таблицы разделов (часть MBR):
dd if=/temp/mbr.img of=/dev/sda skip=446 seek=446 bs=1 count=64