1 508
contributi
S3v (discussione | contributi) Nessun oggetto della modifica |
(→Effettuare il backup del MBR: corretti tutti i "466" errati come da segnalazione sul blog debianizzati) |
||
Riga 27: | Riga 27: | ||
Se si vuole invece salvare solo il codice del [[boot loader]]: | Se si vuole invece salvare solo il codice del [[boot loader]]: | ||
<pre># dd if=/dev/hdX of=/path/MBR-boot-code bs= | <pre># dd if=/dev/hdX of=/path/MBR-boot-code bs=446 count=1</pre> | ||
e per il ripristino: | e per il ripristino: | ||
<pre># dd if=/path/MBR-boot-code of=/dev/hda bs= | <pre># dd if=/path/MBR-boot-code of=/dev/hda bs=446 count=1</pre> | ||
Infine per salvare solo la tabella delle partizioni: | Infine per salvare solo la tabella delle partizioni: | ||
<pre># dd if=/dev/hdX of=/path/backup-partition-table bs=1 count=66 skip | <pre># dd if=/dev/hdX of=/path/backup-partition-table bs=1 count=66 skip 446</pre> | ||
e per ripristinarla: | e per ripristinarla: | ||
<pre># dd if=/path/backup-partition-table of=/dev/hdX bs=1 count=66 skip | <pre># dd if=/path/backup-partition-table of=/dev/hdX bs=1 count=66 skip 446</pre> | ||
== Azzerare il MBR == | == Azzerare il MBR == |
contributi