Synchronize two directories on linux pc

Posted by Gab on Super User See other posts from Super User or by Gab
Published on 2012-11-26T10:14:36Z Indexed on 2012/11/26 11:11 UTC
Read the original article Hit count: 232

Filed under:
|
|

I need a distributed filesystem (or a synchronization tool) that is capable of keeping a directory synchronized across 4 pc.

My requirements are:

  • offline access (data must be available offline on each pc)
  • preserve execution rights: some files are marked executable on a linux partition. This flag should be replicated.
  • efficient sync strategy: some of my files are 20GB, they are changed quite often, but in very little parts (Virtualbox images). Delta transmissions are welcome.
  • efficient handling of space: no history for files, files shouldn't be copied to temp directories "just in case you break it".
  • it must propagate deletions of files
  • modification can happen in any of the 4 pcs, they should be propagated when other pc are connected.

Other specs of my solution are:

  • Sync is over a lan, the total amount of data to be synced is around 180GB, in some ten thousand files. Changes are small, but can happen in big files.
  • At the moment i'm interested in a linux only solution.
  • conflicts either don't happen or are solved with "last one wins"

I haven't found any good solution. I've been trying:

  • unison: it is the only one working at the moment, but during the hashing phase it hangs my pc for some minute, disk light steady on.
  • Sparkleshare doesn't handle large files nicely. It keeps an history of all your changes that grows up indefinitely. They promise it will be fixed in next releases, but at the moment it still doesn't fit my needs.
  • owncloud (keeps history of each file i change)
  • coda ? (help! i couldn't set it up correctly!)
  • git-annex assistant transforms all your files in symlinks and mark the original file as read only ("just in case you make a mistake while you modify it"!). Before you edit a file you have to issue a special command "git-annex unlock", that creates a local copy of the file, and you have to remember to lock it again if you want it synchronized.

What to try next?

© Super User or respective owner

Related posts about linux

Related posts about sync