Disk Images

From Tomelec
Revision as of 16:59, 20 September 2011 by Tom (talk | contribs) (Created page with "== Create a compressed image of a disk == The whole disk (SD-card) is read and piped through ''gzip'' for compression. <nowiki>dd if=/dev/mmcblk0 bs=1M | gzip --stdout > ./image...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Create a compressed image of a disk

The whole disk (SD-card) is read and piped through gzip for compression.

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