Skip to content

Instantly share code, notes, and snippets.

@patriciogonzalezvivo
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patriciogonzalezvivo/0d5eb1b8b93ab184fd24 to your computer and use it in GitHub Desktop.
Save patriciogonzalezvivo/0d5eb1b8b93ab184fd24 to your computer and use it in GitHub Desktop.
DiskImage Backup and restore

Backup

diskutil list
sudo dd if=/dev/disk1 of=~/Desktop/diskImg.dmg

Restore

diskutil list
diskutil unmountDisk /dev/disk1
sudo newfs_msdos -F 16 /dev/disk1
sudo dd if=~/Desktop/diskImg.dmg of=/dev/disk1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment