- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Re: RSYNC ENCRYPTED SPARSEBUNDLE
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a very large media library, 13TB, and sync all my data between local and remote NAS units. Because the remote unit will no longer be in my direct control I want to encrypt the media library. The fastest way to do so is backup to an encrypted sparsbundle. When I rsync between the NAS units, can rsync move only the changed bits of the sparsebundle or does it have to move the whole thing with each change that is made on the local unit?
Just looking for for an answer to the above, not for other backup options.
Thanks in advance.
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
where is the encryption taking place, locally or remote?
if you are encrypting locally, the encrypted sparse bundle will most likely have completely different bits after every change. If so, then rsync will see it as all new data and essentially the whole thing will be transferred each time.
If you are encrypting remotely, then the encryption should be irrelevant to the rsync process, and it should only transfer it the bits that changed/added/removed.
the best thing is for you to try it on some smaller test content before your main content, that way you can see what performs best and experiment on data you don't care about.
All Replies
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
where is the encryption taking place, locally or remote?
if you are encrypting locally, the encrypted sparse bundle will most likely have completely different bits after every change. If so, then rsync will see it as all new data and essentially the whole thing will be transferred each time.
If you are encrypting remotely, then the encryption should be irrelevant to the rsync process, and it should only transfer it the bits that changed/added/removed.
the best thing is for you to try it on some smaller test content before your main content, that way you can see what performs best and experiment on data you don't care about.