Crea imagenes de discos, particiones ...
$ dd if=/dev/zero of=/dev/hda
$ dd if=/dev/urandom of=/dev/hda
$ dd if=/dev/hdx of=backup-mbr bs=512 count=1
$ dd if=backup-mbr of=/dev/hda bs=512 count=1
$ dd if=mbr of=/dev/hda
$ dd if=/dev/hda1 of=/dev/hda3
$ dd if=/hda of=/hdb bs=1M
$ dd conv=noerror if=/dev/cdrom of=imagen_con_errores.img
$ dd if=/dev/sda of=/dev/sdb conv=noerror,sync
$ time dd if=/dev/zero of=TEST bs=4k count=512000
$ dd if=/dev/sda1 of=copia_seguridad.tar | pv
$ dd if=/dev/sdc bs=4096 dd of=/home/usuario/copia_seguridad | pv -s 2G
$ dd if=/dev/hda of=/home/hda.iso
$ dd if=/dev/hda | gzip > /home/hda.bin.gz
$ dd bs=1M if=/dev/sda4 | ssh usuario@host 'dd of=/home/usuario/sda4.img'
$ dd if=/dev/cdrom of=~/cd_image.iso
# dd if=/dev/sda | pv | dd of=/dev/sdb bs=1M