Is there an rsync like program with the ability to track changes in file location?
Is there an rsync like program with the ability to track changes in file location?
@SomeBoyo As in something analogous to what a cli git status shows when a file has been moved or renamed?
Not that I know of, but could you maybe get what you need by grepping the output of the progress and info flags?
As long as the backup system performs deduplication, it should be able to store the backup data efficiently even if the source files are constantly moved around or renamed.
ZFS snapshots can perform deduplication. There is also ZBackup, which also has deduplication support.
I use RealTimeSync.
It just… Works. I love it. It’s free.
rsync can do this fine with –recursive --delete. The mirror will remain an exact replica.