Difference between revisions of "Disk Images"

From Tomelec
Jump to: navigation, search
Line 1: Line 1:
== Create a compressed image of a disk ==
+
== 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''.
 
The whole disk (SD-card) is read, piped through ''gzip'' for compression and written to the ouput file ''image.gz''.
 
  <nowiki>dd if=/dev/mmcblk0 bs=1M | gzip --stdout > ./image.gz</nowiki>
 
  <nowiki>dd if=/dev/mmcblk0 bs=1M | gzip --stdout > ./image.gz</nowiki>
 +
 +
Restore:
 +
<nowiki>gunzip --stdout image.gz | dd of=/dev/mmcblk0 bs=1M</nowiki>
 +
 +
Note:
 +
*both commands require root privileges
 +
*be very very careful to choose the right device when restoring!

Revision as of 17:16, 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 very careful to choose the right device when restoring!