Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 359 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 359 Bytes

MBR: Master Boot Record

Backup MBR and partitions

root@server: sfdisk -l /dev/hda > MonFichier.part #Partitions
root@server: dd if=/dev/hda of=<path>/mbr.img bs=512 count=1 #MBR

Restore MBR and partitions

root@server: /dev/hda < MonFichier.part #Partitions
root@server: dd if=<path>/mbr.img of=/dev/hda bs=512 count=1 #MBR