Does Rsync Allow Files To Be Synced Both Ways?

24,520

Solution 1

Rsync does a one way sync, however it's up to you to decide which way the sync goes.

Rsync command syntax is the following:

rsync [OPTION...] SRC... [DEST]

Note that you specify sync from source to destination. Source and destination can be any local or remote path.

For example if you want to copy files from your server to your laptop you do:

rsync [OPTION...] <server-path> <laptop-path>

To sync in the opposite direction you do:

rsync [OPTION...] <laptop-path> <server-path>

So to answer your question: it depends on how you execute rsync.

If you want files to be deleted on the destination you need to use --delete option. But be careful with it, because if you make a mistake when specifying your source then you will end up removing everything on your destination. It's safer to test your sync without --delete option first and once you are happy with how it works you can add --delete option.

As suggested by masegaloeh in comments below, -n or --dry-run option may also be used to test rsync command behavior.

Solution 2

A wrapper tool written in python3 called bsync which wraps find and rsync command simplifies the task. Github repo: https://github.com/dooblem/bsync

Don't be scared when it is on github (i.e. in a way that you think you must be a programmer to use the tool).

Share:
24,520
Dan Hastings
Author by

Dan Hastings

Updated on September 18, 2022

Comments

  • Dan Hastings
    Dan Hastings over 1 year

    I have backed up a linux web server using rsync with cygwin. I now have a perfect copy of the server on my windows laptop. If i delete or modify a file on my laptop and run rsync again with cygwin will it delete/update the same file on the server? Im under the impression that if i delete/modify on the server and run rsync on my laptop it will delete/modify the local file on my laptop but does this work in reverse?

    • Dubu
      Dubu almost 10 years
      This is not an answer to your question, but you should have a look at unison. It's a synchronization tool that saves file state on both copies and thus allows bidirectional synchronization. There is also a cygwin package.
    • Sam
      Sam almost 10 years
  • masegaloeh
    masegaloeh almost 10 years
    Additional note: For testing rsync behavior, you can use parameter -n or --dry-run, so you will know which file will be deleted and modified
  • harperville
    harperville almost 8 years
    I take it that the downvotes are because the OP isn't trying to have rsync delete anything. He's deleting things on his own. Having said that, helpful hint for rsync'ing in general. Thanks.