that is expected behaviour using sync and --backup-dir.
if you remove RemoveAfterSync from /Volumes/Data,
then re-run the sync
rclone will move RemoveAfterSync from /Volumes/zeit/twh-data to /Volumes/zeit/twh-data/Archive/04-25-20/
Yes there must have been some changes in those files previously because now I can get it to run.
Is there a specific order to how one runs sync with so many flags and arguments. I notice if I get a white space it will complain about too many arguments.
I added in a filter file and now the command has grown:
I went down this rabbit hole after reading in another post your suggestion to use this as a "forever forward incremental backup". I was looking for a good way to use rclone for backups.
This seems like a good way to make a backup and an archive of diffs.
Thanks for the quick reply, I'm going to write off the too many arguments issue to copy and paste sloppiness and white space. I see now in VS code that with word wrap on it creates a white space and the end of the line.
What are the pros/cons of using copy vs sync in this scenario?
What would be your preferred way to backup locally? I'm mostly using it now to learn the ins and outs of rclone. Would just rsync to local be a better option? I'm on both macOS and Linux platforms.
one of the many issues with local backups using rclone is how it deals with open files and file permissions.
i only use rclone to get other backup files to the cloud.
i have a 350+ line of python code to control all my various backups.
on my local computer, i use veeam agent, for a bare metal type of backup, only backups up the parts of files that change between backups. and if my entire computer died, i can recover it using those veeam backups.
veeam produces one file per day and that file ends up on my local home server.
so veeam is like rsync on steroids.
then for certain folders on my local computer, that script will create a 7zip file, password protected, and that will end up on my home server.
that script also runs on the server and copies those veeam backup file and 7zip to cloud using rclone.
i also use that script at work as i use it at home.
Gotcha, So my take away from what your saying here: rclone is best suited to the "Second Phase" of backup - moving files to the cloud for the offsite portion of ones backup and NOT the first line of snapshot backups.