Skip to content

Instantly share code, notes, and snippets.

@antespi
Last active December 26, 2015 04:19
Show Gist options
  • Save antespi/7092719 to your computer and use it in GitHub Desktop.
Save antespi/7092719 to your computer and use it in GitHub Desktop.
Dump/Restore disk image
Dump disk into zip file
=======================
# /bin/dd if="$DEVICE" conv=sync,noerror bs=64K | /bin/gzip -c > "$FILE"
Restore from zip file
=======================
# gunzip -c "$FILE" | dd of="$DEVICE" conv=sync,noerror bs=64K
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment