Está en la página 1de 1

full hard disk copy

dd if = / dev / hdx of = / dev / HDY dd if=/dev/hdx of=/dev/hdy


dd if = / dev / hdx of = / ruta / a / imagen dd if=/dev/hdx of=/path/to/image
dd if = / dev / hdx | gzip> / ruta / a / image.gz dd if=/dev/hdx | gzip >
/path/to/image.gz

Hdx podría ser hda, hdb etc gzip En el segundo ejemplo se utiliza para comprimir la
imagen si es en realidad una copia de seguridad. Hdx could be hda, hdb etc. In the
second example gzip is used to compress the image if it is really just a backup.

Restaurar copia de seguridad de la copia del disco duro Restore Backup of


hard disk copy

dd if = / ruta / a / imagen of = / dev / hdx dd if=/path/to/image of=/dev/hdx

gzip-cd / ruta / a / image.gz | dd of = / dev / hdx gzip -dc /path/to/image.gz | dd


of=/dev/hdx

También podría gustarte