I store my files (plaintext) on an encrypted Sparse Bundle Disk Image and backup this image (the ciphertext) with Rsync to another server. Sparse Bundle Disk Images create 8 MiB files ("bands") to store the ciphertext.
The problem is: just opening files or doing minor things like a rename or small edit will cause several changes on the HFS filesystem like:
- Updating spotlight
- Updating .DS_Store
- Other stuff related to these files https://github.com/github/gitignore/blob/master/Global/OSX.gitignore
When sparse bundle translates this into the bands, this causes large backup deltas, which is undesirable.
Can I configure this image to disable .DS_store, Spotlight and other metadata which is burdening my backup system?