Skip to content

Instantly share code, notes, and snippets.

@alexwahl
Created November 12, 2024 11:31
Show Gist options
  • Save alexwahl/9dc1351a5155e250c09bc6484c1de884 to your computer and use it in GitHub Desktop.
Save alexwahl/9dc1351a5155e250c09bc6484c1de884 to your computer and use it in GitHub Desktop.
dd with gzip

How to compress and decompress dd raw data trough gzip

This is very usefull when dealing with sd card images :-)

compress

sudo dd if=/dev/<input device> | gzip --best  > backup_sd.img.gz

decompress

gunzip -c backup_sd.img.gz | sudo dd of=/dev/mmcblk0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment