Boot-Records sichern
Manchmal kann es notwendig sein, die Boot-Records zu sichern.
z. B. bevor man Linux installiert und GRUB sich im MBR-Record einnistet.
Dabei ist einiges zu beachten. Je nach Filesystem müssen eine
unterschiedliche
Anzahl von Records gesichert werden.
Beschreibung in :
http://www-linux-community.de/Neues/stor?storyid=7009
sichern:
dd if=/dev/hdx of=/dev/fd0 bs=512 count=1
als Datei:
dd if=/dev/hdxx of=/media/floppy/boot.lin bs=512 count=1 (SuSE)
zurückspielen:
dd if=/media/floppy/boot.lin of=/dev/hdxx bs=512 count=1
Filesysteme: count:
MBR
- 1 (und Partitiionstabelle)
FAT16
- 1
FAT32
- 6
NTFS
- 16
EXT2fs
- 2
erweiterte Partition - 1 (EPBR=Extended Partition
Boot Record)
Mit fdisk -l kann man sich alle Parttionen
anzeigen lassen.