Linux: Master Boot Record MBR

2013-06-19 00:00:00 IN1 , 2023-04-14 14:47:40 IN1


Nachfolgend aufgeführt einige Linux shell commands um den MBR zu sichten, zu sichern und die Sicherung wieder euinzuspielen.

Anwendung selbstverständlich auf eigene Gefahr!

Die Pfade zu den Laufwerken müssen ggf. angepasst werden. Bitte berücksichtigen !

MBR sichten

hd -n 512 /dev/sda

oder

dd if=/dev/sda bs=512 count=1 | hexdump -C

Backup MBR

dd if=/dev/sda of=/tmp/sda-mbr.bin bs=512 count=1

Verify des Backups:

root@erazer:/tmp# file sda-mbr.bin
sda-mbr.bin: DOS/MBR boot sector

Restore MBR

dd if=sda-mbr.bin of=/dev/sda bs=1 count=64 skip=446 seek=446

MBR komplett löschen

dd if=/dev/zero of=/dev/sdc bs=446 count=1

bs=446: 446 BYTES bytes at a time


Links


Related

This website uses Cookies to provide you with the best possible service. Please see our Privacy Policy for more information. Click the check box below to accept cookies. Then confirm with a click on "Save".