Created
November 1, 2016 16:42
-
-
Save nrollr/0e496b0353c4008d5c4956a143d2e37c to your computer and use it in GitHub Desktop.
iOS device backup to Time Capsule
This file contains 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
# Create the appropriate directory structure on the TimeCapsule and mount the root folder ('Data' in this example) | |
# Backup path: /Volumes/Data/iOS/Backup/ | |
$ cp -r ~/Library/Application\ Support/MobileSync/Backup/ /Volumes/Data/iOS | |
$ cd ~/Library/Application\ Support/MobileSync/ | |
$ rm -r Backup/ | |
$ ln -s /Volumes/Data/iOS/Backup/ ~/Library/Application\ Support/MobileSync/ | |
# Open iTunes select your iPhone/iPad and click 'Back Up Now'-buttom | |
# Backup will be written to /Volumes/Data/iOS/Backup/<UDID> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment