Ask HN: Offsite backup, BUT without local copy of the data (with catalog)?
The problem: if I have 1TB of data, I need to have 1TB of "local" storage to make incremental backups with most tools. That consumes space and disables me to store my incremental backups encrypted/signed/etc
There is obviously the not-so-space-technology of backup catalogs. For windows systems there are: backup4all and Genie-Soft Backup Manager that use those.
For linux I could not find one. The closest alternative I could come with is 'git add ./*', 'git-gc' and then storing the packfile offsite, but it's a bit unstraight method, I suppose.
Are there any free/OSS alternatives for both linux and windows, which you can tell me about?
3 comments
[ 4.5 ms ] story [ 16.8 ms ] threadSpeaking of catalogs, I wonder if Duplicity is what you want.
It lets you extract a catalog from the backup set that you can use locally as a checkpoint for doing diff/incremental backups. The catalog is really small, mine is ~10Mb for hundreds of thousands of files.