23

I would like to do a two-way automatic sync between folders Directory A andDirectory B. This means that whenever a file in Directory A or one of its sub-directories is changed, that change is immediately applied to Directory B, and whenever a file in Directory B or one of its sub-directories is changed, that change is immediately applied to Directory A. Thus, the two directories would be completely identical, including document properties. How can I achieve this?

I am using Ubuntu 16.10.

Symlinks are not an option.

5 Answers5

17

Unison

Unison is a GUI and terminal-based tool which allows files and directories to be kept in sync with each other, between different local directories and drives or on a network, which could be on different operating systems. The application is available for Unix operating systems (Linux and Mac OS X) and Windows. Changes can be made on the different places, and Unison will update the machines with the correct versions of files and folders, copying, deleting, renaming or deleting files and directories as necessary.

Unison sync app is probably the most used and trusted by the Ubuntu/Debian community. It is available at the Software Center and at the package manager. It has a command-line and a graphic user interface (GUI)(GTK).

Ubuntu Help Community Wiki - Unison

Ubuntu Manual - Unison

A short use example, close to your request, can be found at Rmano answer (screenshot below).

screenshot

FreeFileSync

FreeFileSync is a free data backup software that helps you synchronize files and synchronize folders. It is designed to save your time setting up and running data backups while having nice visual feedback along the way. FreeFileSync is Open Source software, available for Windows, Linux and macOS.

I've never tried but it seems to be worth a shot. It has a default GUI and is under active development.

screenshot

Synkron

Synkron is an application that helps you keep your files and folders always updated. You can easily sync your documents, music or pictures to have their latest versions everywhere. Synkron provides an easy-to-use interface and has lot of features. Moreover, it is free, open-source and cross-platform.

screenshot

Pablo Bianchi
  • 17,371
3

For a long time I used rsync to sync my laptops(2) and a 3rd machine, then I tried with syncthing but this morning a famous search engine offered me this project:

Mirror

Mirror is built to support a two-machine (e.g. desktop+laptop) development workflow where you want to run a command line compile/build process on a powerful/dedicated desktop, but still edit files remotely on a laptop.

You will also find a comparison of different solutions.

His main argument against rsync are : not real time and nor officially two ways.

PS: I'm using it through zerotier, so my machine are always able to communicate together.

Pablo Bianchi
  • 17,371
JOduMonT
  • 397
1

I would recommend the synkron tool. This is an open-source application available for linux(and other OS's). More recent copy of the file is updated over folders based on the time stamp. The frequency of the sync is user defined.

To install you have to build it which requires Qt 4.3 or recent version.

Check the sourceforge page ( synkron on sourceforge) to download and installation details.

Advantages over rsync+cron and other simple approaches:

  • A temporary backup is created which is saved for certain duration of time.
  • Option to not propagate deletions.
  • Multiple folder can be linked as masters, or slave-master configuration.

Project page - Synkron page / Documentation - Synkron documentation

ankit7540
  • 4,195
0

I come late on that question : to do that task often on the same folders, there is Synchrorep.

0

I wrote Poni after getting frustrated with lsyncd, lsyncd wasnt syncing correctly and I had to restart service constantly to pick up inotif changes,

this is a binary written in Crystal that uses inotify lib and rsync to do the actual file/dir sync between 2 hosts, using it in production now, no issues

https://github.com/perfecto25/poni

also have a python version of this,

https://github.com/perfecto25/isync