Linux
Logiciels
dd
Sauvegarder et restaurer le MBR
Sous : Linux, Debian, Ubuntu
Sous un système GNU/Linux, on sauve le MBR du disque à l'aide de la commande dd :
Trouver le nom système du disque où est installé votre OS:
# fdisk -l Disk /dev/sda: 320.1 GB, 320072933376 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x24e124e0 Device Boot Start End Blocks Id System /dev/sda1 * 1 6079 48827392 83 Linux /dev/sda2 6079 15076 72265728 83 Linux /dev/sda3 15076 15298 1786880 82 Linux swap / Solaris /dev/sda5 15299 38914 189687808 7 HPFS/NTFS
# dd if=/dev/sda1 of=boot.mbr bs=512 count=1
1+0 enregistrements lus 1+0 enregistrements écrits 512 octets (512 B) copiés, 3,3479e-05 s, 15,3 MB/s
# dd if=boot.mbr of=/dev/sda1 bs=512 count=1
1+0 enregistrements lus 1+0 enregistrements écrits 512 octets (512 B) copiés, 0,000759254 s, 674 kB/s