dd Beispiele

letzte Änderung: 19. Dez. 2014, 16:45 Veröffentlicht: 11. Apr. 2011, 16:44

Inhaltsverzeichnis

 

 

 

 

Images von Festplatten/Partitionen

Festplatte-Image erstellen

dd if=/dev/hda of=/Backup/hda.img

oder

dd if=/dev/hda bs=16065b | gzip -1 >/Backup/hda.gz

Image zurückspielen

gunzip -dc /Backup/hda.gz | dd of=/dev/hdc bs=1606225b

Image von einer Partition erstellen

dd if=/dev/hda1 of=/Backup/hda1.img

Images mounten

mount -o loop -t dateisystemtyp /tmp/ghost-hda1.img /mnt/image

 

Bootsktor Backup/Restore

Backup

dd if=/dev/hda1 of=bootsect.img bs=512c count=1

Restore

dd if=bootsect.img of=/dev/hda1 bs=512c count=1

 

Dummy-Datei erstellen

dd if=/dev/urandom of=dummy.xy bs=1024 count=1024