Created
February 28, 2015 12:04
-
-
Save cmaas/e15167ee4e402ef1a9ff to your computer and use it in GitHub Desktop.
Backup of an SD Card on OS X with dd
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
diskutil list | |
diskutil unmountdisk /dev/disk2s1 | |
dd if=/dev/disk2s1 of=card.img bs=1m | |
Check status of dd by pressing Ctrl + T in Terminal. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment