Last active
December 17, 2015 14:29
-
-
Save cuibonobo/5624424 to your computer and use it in GitHub Desktop.
Raspberry Pi Backup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run DF and look for your SD Card | |
df -h | |
# Use the SD Card device name on the following lines | |
diskutil unmountDisk /dev/disk3 | |
dd if=/dev/disk3 of=wheezy-backup.img bs=1m | |
diskutil eject /dev/disk3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment