Guest User

Untitled

a guest
Oct 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. There is another way which will work even if you've already done a full backup.....
  2. 1. Do your first backup (or second or third, as long as the sparsebundle file has not already increased to a size greater than the limit you are setting out to achieve.
  3.  
  4. 2. Temporarily switch off time machine (so it doesn't try and backup while you're doing this.
  5.  
  6. 3. A sparsebundle is really a folder which Finder pretends is file (a bit like the programs in your applications folder). The maximum size for a sparsebundle file is stored in an xml file named Info.plist which lives inside the .sparsebundle folder.
  7.  
  8. 4. If your time capsule disk is mounted (double click on it in finder) you can very easily access this from the command line.
  9. a. Open the terminal (In Applications==>Utilities
  10. b. type in
  11. sudo nano /Volumes/time-capsule/tim.sparsebundle/Info.plist
  12. [ yours will have a different volume and sparsebundle name obviously ]
  13.  
  14. c. If you have a 1TB time capsule the file will look something like this
  15.  
  16. <?xml version="1.0" encoding="UTF-8"?>
  17.  
  18. <plist>
  19. <dict>
  20. <key>CFBundleInfoDictionaryVersion</key>
  21. <string>6.0</string>
  22. <key>band-size</key>
  23. <integer>8388608</integer>
  24. <key>bundle-backingstore-version</key>
  25. <integer>1</integer>
  26. <key>diskimage-bundle-type</key>
  27. <string>com.apple.diskimage.sparsebundle</string>
  28. <key>size</key>
  29. <integer>998057361408</integer>
  30. </dict>
  31. </plist>
  32.  
  33. d. change the final number (998057361408 in this example) to a smaller number
  34. (409600032768 will make it limited to 400GB)
  35.  
  36. e. press control-o to save and then control-x to exit
  37. f. copy this file to its bckup counterpart... type in:
  38. sudo cp /Volumes/time-capsule/tim.sparsebundle/Info.plist /Volumes/time-capsule/tim.sparsebundle/Info.bckup
  39. e. close the terminal.
  40.  
  41. 5. Turn on time machine again and relax.
Add Comment
Please, Sign In to add comment