yeah, it doesn’t, it’s not a backup tool, it’s just for file transfer. It’s only useful if transferring files somewhere else counts as a backup for you.
portnull@lemmy.dbzer0.com 1 day ago
Maybe I am missing something but how does it handle snapshots?
eager_eagle@lemmy.world 22 hours ago
eleijeep@piefed.social 21 hours ago
You get incremental backups (snapshots) by using
To use this you pass in the previous snapshot location as DIR and use a new destination directory for the current snapshot. This creates hard links in the new snapshot to the files which were unchanged from the previous snapshot, so only the new files are transferred, and there is no duplication of data on disk (for whole-file matches).
This does of course require that all of the snapshots exist in the same filesystem, since you cannot hard-link across filesystems.
koala@programming.dev 8 hours ago
Ah, I didn’t know of this. This should be in the linked article! Because it’s one of the ways to turn rsync into a real backup! (I didn’t know this flag- I thought this was the main point of rdiff-backup.)