What is the simplest way to unidirectional incremental syncing of a folder present on a Linux system.
+1 for using the command line. +2 for not using rsync (Seems to have some problems on my system.)
|
What is the simplest way to unidirectional incremental syncing of a folder present on a Linux system. +1 for using the command line. +2 for not using rsync (Seems to have some problems on my system.) |
||||
|
csync is a file synchronizer especially designed for you, the normal user. csync is a library and ships commandline client by default. It is server-less and allows synchronisation through either Usage examples:
|
|||
|
|
|
I think you should solve your problems with rsync, that is the tried and true" syncronization tool for unixes.
Note: For bidirectional sync, you can use unison as well as csync. |
||||
|
|
|
This is how I would do a unidirectional sync with bare tools. At the onset, tar the entire set of files and copy them to the destination point.
Now, we want to keep sync'ing from Source to Destination. At the next time slot for syncing forward (from Source to Destination),
|
|||
|
|
rsyncvery likely is the simplest answer, explain what problems you're having with that. (The problems may spill over to any other solution, anyhow.) – Telemachus Jul 17 '09 at 10:37