Advertisement
m_antis

Backup Your iPhone to an External Drive

Jan 26th, 2020
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. How to Link Your iPhone Backup to an External Drive
  2. ==================================================================
  3. First! (if not already) create a backup of your iPhone to your internal hard-drive AND
  4.  
  5. Grant Terminal full disk access. How?
  6.  
  7. System Preferences > Security & Privacy > Privacy Tab
  8.  
  9. Select Full Disk Access (folder icon) from the left sidebar
  10.  
  11. If you can’t make any changes, then click/toggle the lock (icon) and enter user password.
  12.  
  13. If Terminal is not listed in the window, then click the ‘+’ icon and find and select Terminal within Applications folder.
  14.  
  15. Then check the checkbox for Terminal. Toggle the lock and restart Terminal if it’s already open.
  16.  
  17. NOW, HOW TO INDEFINITELY BACKUP YOUR IPHONE TO AN EXTERNAL DRIVE
  18. ==================================================================
  19. a. Open Spotlight (⌘ + SPACE) and search for Terminal
  20.  
  21. Execute the following command in Terminal to create your Backup folder on your external drive:
  22.  
  23. $ mkdir /Volumes/NAME_OF_YOUR_VOLUME/iPhone_backups
  24.  
  25. b. Using Terminal, copy your iPhone backups Backup folder to your external:
  26.  
  27. $ mv ~/Library/Application\ Support/MobileSync/Backup /Volumes/NAME_OF_YOUR_VOLUME/iPhone_backups
  28.  
  29. c. Rename the original Backup folder (on your internal drive) by using Terminal to something like Backup-OLD
  30.  
  31. $ mv ~/Library/Application\ Support/MobileSync/Backup ~/Library/Application\ Support/MobileSync/Backup-OLD
  32.  
  33. d. Here we execute the command to create a symbolic link (symlink) to your Backup folder on your external
  34.  
  35. $ ln -s /Volumes/NAME_OF_YOUR_VOLUME/iPhone_backups ~/Library/Application\ Support/MobileSync
  36.  
  37. VERIFY AND TEST THAT THE SYMLINK EXISTS AND FUNCTIONS
  38. ==================================================================
  39.  
  40. a. In Finder, press command + shift + G (⌘ + ⇧ + G) then type or paste in the following location:
  41.  
  42. ~/Library/Application\ Support/MobileSync
  43.  
  44. b. If the Backup folder within the MobileSync folder has a small arrow pointing inwards, then the symlink has been established.
  45.  
  46. c. Verify it now functions by performing another iPhone backup. After the backup, confirm that that backup is stored on your external.
  47.  
  48.  
  49. ====================================================================================================================================
  50. If you’re unsure about something then please contact me and I’ll reply soon when convenient. Else, try googling.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement