I am looking for a program on Linux that will allow me to mirror the contents of one hard drive onto another. However, I only want it to sync the files that are not identical to what is already on the destination drive.

What is the best tool for doing this?

I can use a CLI tool if needed, but would prefer one with a GUI if it exists.

#AskNostr

Reply to this note

Please Login to reply.

Discussion

GUI is probably more of a problem than it is worth, u might be better off just with rsync

Plus one for rsync, that is exactly what you're looking for

Rsync is the answer.

Rsync for sure.

sudo rsync -avh --progress /source/ /target

Something like that

Rsync