Skip to content

Instantly share code, notes, and snippets.

@vadimstasiev
Last active February 27, 2023 12:16
Show Gist options
  • Save vadimstasiev/8f8541e757607d3a3db98084a8e08a1e to your computer and use it in GitHub Desktop.
Save vadimstasiev/8f8541e757607d3a3db98084a8e08a1e to your computer and use it in GitHub Desktop.
backup and restore rasberry pi sd card

Backup

(32G is size of SD card - so it can show progress correctly)

sudo dd bs=4M if=/dev/mmcblk0 | pv -s 32G | gzip > ./Pi4-backup.gz

Restore

sudo gzip -dc ./Pi4-backup.gz | pv -s 32G | sudo dd bs=4M of=/dev/mmcblk0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment