Comment on Backing up easily
thejml@sh.itjust.works 2 days ago
I use an rsync
job to do it. Rsync by default uses the files metadata to determine if the file has changed or not and updates based on that. You can opt to use checksums instead if you’d rather. IIRC, you can do it with a Synology task, or just do it yourself on the command line. Ive got a Jenkins setup to run it so i can gather the logs and not have to remember the command all the time (and i use it for other periodic jobs as well), but its pretty straightforward on its own.
ki9@lemmy.gf4.pw 1 day ago
Rsync is the correct solution. It does exactly what you want and nothing more. A script that uses rsync is future-proof. Other backup solutions depend on the maintenance of the software, which could be abandoned, go up in price, or have vulnerabilities.
melfie@lemy.lol 3 hours ago
I currently use rsync to do encrypted backups to iDrive e2 currently, but I’m concerned about the concept of “syncing isn’t a backup”, since as others have already said here, you can sync corrupted files, accidental deletions, etc. without more than a single snapshot. I’m considering something like Backrest with e2 because I like the idea of something that is opinionated and that “just works” when it comes to backups.