My fileserver has a number of shares that contain different kinds of data. For each of the shares, say Media as an example, I keep a Media-Backup volume as well. All my -Backup volumes get backed up to Backblaze by Duplicacy.
The sync from Media to Media-Backup is a one-way (I do not touch the -Backup volumes in daily use) rsync job that runs every night. I dont run them constantly, because people make mistakes and the fact that it’s daily has saved me more than once.
The benefit of it just being an rsync job is that it’s a normal filesystem I can access for convenience. I don’t have to go look up how to restore something, etc.
But I’m wondering what arguments exist to replace this sync with Duplicacy. What I can come up myself is:
- Versioning
- No need for lots of unused space in -Backup partitions, dump it all into a single partition and thus save space.
What other benefits would this have?