I want to do one way synchronization.
I am having Folder A
on my computer which is constantly updated with content.
Another Folder B
is used for backup purpose which is on external HDD.
Now what I expect is that whatever extra which is present in folder A should go to folder B. However something which is present in B and NOT in A ""shall NOT be copied to A"".
In a nutshell, the backup folder may copy everything from the source folder, however nothing should be copied form backup folder to the source.
Sounds like a perfect task for rsync
If you wish to remove files deleted in A from files in B, use the
--delete
optionFor additional information see:
https://help.ubuntu.com/community/rsync
You can run rsync from cron
Add in an hourly task
https://help.ubuntu.com/community/CronHowto
I'd suggest using rsync for this purpose. Rsync is extremely fast, stable, and versatile. There's a good introduction at http://help.ubuntu.com/community/rsync
If you wish, there is an optional graphic front end: grsync
The command above will copy from folderA to folderB excluding dir1. The flags are
There are many more options available.
I always found Unison to be very helpful. It has a text based or GUI based interface, and quite a few different options to tweak it to what you want (with a little fiddling). It takes quite a bit of time to do the first sync, but after that it's brilliant. You can make it sync one-way, as you want, but it will pretty much get that automatically. It can also delete from the backup or not as you choose.
You also may find issues with permissions which are supported in the ubuntu file format, but maybe not in the external hard drive (depending whether the external hard drive is going to be used in a windows machine, this may be a good thing), so you'll want to sync without the permissions potentially.
Anyway, the nice thing is that with the tutorial it's relatively straightforward to set it up once, and thereafter it's a GUI interface whenever you want to do it.
Here's some info about it: http://www.ubuntugeek.com/unison-file-synchronization-tool.html
And here's the tutorial: http://www.cis.upenn.edu/~bcpierce/unison/download/releases/stable/unison-manual.html#tutorial
This will sync and copy only that data that doesn't exist in the
/other/folder/on/hdd/
I agree with the other answers, you can use in rsync in Terminal or the interfaces Grsync, luckyBackup, Conduit or the famous Unison.
Another great app is Krusader (a Twin-Panel File Manager for KDE), in the Tools menu you can find "Syncronize Directories", is very useful.
In last instance you can install Wine and install another great twin-pane file manager like Total Commander.
Anyway you have plenty of options and all of them are present in the Ubuntu Software Center.
I would recommend Conduit for simple synchronization. It's available the software system. It does exactly what you are looking for
There is a quite handy shell tool called rsnapshot - http://www.rsnapshot.org/ - filesystem snapshot utility for making backups of local and remote systems. that uses rsync and hard links which makes it possible to keep multiple, full file system backups instantly available. Just do
sudo apt-get install rsnapshot
and checkinfo rsnapshot
If you want a graphical interface on a system that is highly configurable, give FreeFileSync a try. See, for example: http://linuxnorth.wordpress.com/2011/11/29/file-and-folder-synchronization/ In particular, you want the "Update" option for synchronization that will "Copy new or updated files to right folder", i.e. copy from the left folder to the right folder in a two-window display.
You can sync files inside two direcotries by:
Doing
rsync -rv /path/to/directory1 /path/to/directory2
will createdirectory1
insidedirectory2
, like this/path/to/directory2/directory1/[files]
You can dry run using
-n
switch, like thisrsync -rnv /path/to/directory1/ /path/to/directory2
Reference: https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories-on-a-vps