Limiting the size of your Time Machine
If you use Apple's wonderful Time Machine backup system, the best thing to do is to give it a hard disk of its own, or a partition of its own, because it tends to grow over time to fill the space available, and trimming it later is not easy.
I've got about 3TB of space on my Drobo, and I don't want it all used for TM, but partitioning is a bit of a nuisance. Fortunately, there's a free tool you can download from Drobo called Time Tamer, which you can use for any large disk, and which will limit your TM backup space to twice the size of your internal hard drive.
For those of you who want more control and who are interested in what's happening under the bonnet, though, you can do this yourself. It involves creating a sparse disk image file with the right characteristics and name. TM will then use that instead of creating its own folder structure, and you can limit the size to which the sparse image will grow.
Here's my command line:
hdiutil create -size 400g -fs HFS+J -volname "TM-backup-of-tafelberg" /Volumes/Drobo/tafelberg_0016cb9125cf.sparsebundle
- 400g is the max amount of space I want it to take - the max size of the sparse image.
- tafelberg is the name of my machine
- Drobo is the name of the hard disk I'm using
- 0016cb9125cf is the MAC address of my machine's ethernet port
Comments