Skip to content

Instantly share code, notes, and snippets.

@dado-prateek
Created February 3, 2016 21:13
Show Gist options
  • Save dado-prateek/19e3ee5dd6e2a1294fcc to your computer and use it in GitHub Desktop.
Save dado-prateek/19e3ee5dd6e2a1294fcc to your computer and use it in GitHub Desktop.
RaspberryPi backup with dd
# source: https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=46911
# backup
sudo dd bs=4M if=/dev/sdd | gzip > raspbian-`date +%d%m%y`.img.gz
# restore
gzip -dc image.gz | sudo dd bs=4M of=/dev/sdd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment