Hi, I have installed Rclone today on my server and configured it perfectly with Wasabi, now I want to run rclone once per day for taking an incremental backup of my files.
I have around 1.1 TB files and increasing daily so I am thinking first I will copy all files and then sync once per day only new files, old files remain the same.
You can, but Rclone is not designed to be used as an incremental backup program. If you want to run incremental backups of your data, you really should be using a program designed for that. I use kopia for my incremental backups and there are others too like restic and duplicati
for many years, on a daily basis,
i use rclone as an incremental file backup tool, using wasabi.
rclone sync only copies new/changed files, so in a sense that is incremental.
tho the question is, what to do with an old file in wasabi, that rclone will overwrite with a newer file from local
compare local file to wasabi file.
determined that the local file is newer than the older file in wasabi.
need to decide what to do with that older file in wasabi
--- a. have rclone sync delete the older file in wasabi and replace it with newer local file.
--- b. have wasabi save the older file as a version.
--- c. use a command like so, which is the equivalent to forever forward incremental backup.
We need to know a little more about the data you intend to backup to give you better advice. Is it a full system with live databases, a development environment with a lot of small files or just some relatively static user data (documents, photos and a few movies)? It makes a huge difference and rclone isn't always the best choice.
@asdffdsa Feel free to take over when the day starts in your time zone. You are the Wasabi expert!
I have been using hashbackup successfully with rclone for many years now and am very happy with it. At the time I investigated it it was the only solution (I was able to find) to do eternal incremental backups. All other tools at some point insisted on doing a full backup once in a while.