MBR backup with dd command @ LINUX
MBR is the master boot record of your disks. It includes also partition table. If you want to create one to one partition table and don’t want to copy all your disk you can use the commands below
to backup your mbr
dd if=/dev/sdX of=mbr.bin bs=512 count=1
to restore back your mbr
dd if=mbr.bin of=/dev/sdX bs=1 count=64 skip=446 seek=446
