Difference between revisions of "Disk Images"

From Tomelec
Jump to: navigation, search
m
 
Line 8: Line 8:
 
Note:
 
Note:
 
*both commands require root privileges
 
*both commands require root privileges
*be very very careful to choose the right device when restoring!
+
*be '''very careful''' to choose the right device when restoring!

Latest revision as of 17:19, 20 September 2011

Create and restore a compressed image of a disk

The whole disk (SD-card) is read, piped through gzip for compression and written to the ouput file image.gz.

dd if=/dev/mmcblk0 bs=1M | gzip --stdout > ./image.gz

Restore:

gunzip --stdout image.gz | dd of=/dev/mmcblk0 bs=1M

Note:

  • both commands require root privileges
  • be very careful to choose the right device when restoring!