Può esser utile fare il backup della mbr così da poterla ripristinare in caso di necessità
Ecco come fare

ipotizziamo di aver il master boot record su /dev/sda se lo avete su altri dispositivi ovviamente dovete modificare di conseguenza
$ dd if=/dev/sda of=/home/pippo/mbr_backup bs=512 count=1
Per ripristinare
$ dd if=/home/pippo/mbr_backup of=/dev/sda bs=512 count=1

Per salvare solo il codice del boot loader :

$ dd if=/dev/hdX of=/path/MBR-boot-code bs=446 count=1
Per ripristinare
$ dd if=/path/MBR-boot-code of=/dev/hdX bs=446 count=1

Per salvare la tabella delle partizioni

$ dd if=/dev/hdX of=/path/backup-partition-table bs=1 count=66 skip=446
Per ripristinarla
$ dd if=/path/backup-partition-table of=/dev/hdX bs=1 count=66 skip=446