44

I am currently synchronize between local folders in my computer by following command:

rsync -av --delete "[source]" "[destination]"

Now I want to do this via GUI. so, Is there any GUI available for Ubuntu which works similar as by command rsync? and How can I install it?

APLUS
  • 911

3 Answers3

38

Yes, there is available Grsync GUI App as front end of rsync tool.

Grsync is a rsync GUI (Graphical User Interface)

It is available on Universe repository for Ubuntu 14.04 and can be installed by following command:

To Enable Ubuntu repository run command (or make sure that enabled from Software & Updates):

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe"

Install Grsync By following command:

sudo apt-get update
sudo apt-get install grsync

Here is Screen-Shot of Grsync GUI Application with some steps shown below:

enter image description here

Source & Destination can be selected same as from rsync.

Also you can save different Session for future or often use.

Yaron
  • 13,173
Pandya
  • 35,771
  • 44
  • 128
  • 188
  • 1
    A couple of suggestions: Use the Software Sources GUI for changing/adding Ubuntu repos (they respect the user's mirror selection). grsync is in universe, so we don't need to enable everything. – muru Aug 23 '14 at 10:31
  • 1
    @muru you are Right But Enabling all Ubuntu Repository can be useful in future. And CLI is more suitable for such package-management (install/remove/fix). – Pandya Aug 23 '14 at 12:52
  • 3
    yes, but not respecting the user's choice of mirror and simply setting archive.ubuntu is not good practice. There's a reason mirrors exist. CLI is suitable for package management, but for managing the official repos, Software Sources is the best way. – muru Aug 23 '14 at 14:03
  • @muru ok. I've edited for Software & Updates as other choice. And if repo. already enabled than that command don't harm anything! – Pandya Aug 24 '14 at 02:35
18

I think that the most powerful application with a GUI for synchronizing is Unison. You can install it via

sudo apt-get install unison-gtk 

and it will allow you to sync directory locally, with mounted drives, and on the network via ssh connections. It detects conflicts and in that case it will ask you what to do.

enter image description here

It is quite easy to get started but can become very powerful if you learn how to edit the configuration files by hand; the documentation is really good. There is a command-line interface which is quite handy for scripting.

Rmano
  • 31,947
5

Another GUI application for rsync is luckyBackup.

It is available in the default Debian / Ubuntu repositories. Therefore, you could install it by

sudo apt-get install luckybackup

It is useful particularly if you are looking to use rsync for backing up files.

HelloWorld101
  • 191
  • 1
  • 4