Archives For November 30, 1999

This simple tutorial shows how to install (and uninstall) FreeFileSync, open-source file synchronization software, and create application shortcut in Ubuntu 20.04  and Ubuntu 22.04 LTS.

FreeFileSync is a free and open-source software to create and manage backup copies of all your important files. Instead of copying every file every time, it determines the differences between a source and a target folder and transfers only the minimum amount of data needed.

How to Install FreeFileSync in Ubuntu:

1.) The software now provides an official .run installer, available to download at its website:

Scroll down a little and select download the Linux package.

2.) Extract the source tarball in file manager, then you can navigate to the extracted folder and click Run the installer to get start installing FreeFileSync.

3.) The installer starts a terminal window. And, you have to answer ‘y’ to access license terms. Or, press ‘s’ to show details then ‘y’ to accept, or ‘n’ to refuse.

4.) The installer by default to install the software for system wide into /opt/ directory. Meaning, all users in this Ubuntu system can run it.
For choice, you can type 1 to switch to current user only. If you want, also type 2 to change installation directory, and type 3 to choose whether to add the app icon to the desktop.

When done selecting installation type, directory, and whether to create desktop shortcuts, hit Enter to start the process. If everything goes well, it will show you something as the screenshot below, indicates that all done.

5.) Enable desktop icons.
The desktop icons by default are not usable due to permission issue. Just right click on them one by one and select “Allow Launching” will make them work.

Or, simply delete the desktop icons (move to trash) since you can launch FreeFileSync from start menu or Gnome overview (depends on your desktop environment).

How to Uninstall FreeFileSync:

The installation folder contains a uninstall script to remove FreeFileSync from your system.

Press Ctrl+Alt+T on keyboard to open terminal, then run either command below to uninstall:

  • If installed for current user only, then run command:
    $HOME/FreeFileSync/uninstall.sh
  • For all users (if installed system wide), use command:
    /opt/FreeFileSync/uninstall.sh

If you selected non-default installation directory, then replace $HOME/FreeFileSync or /opt/FreeFileSync in the command above according where you installed the software.

In case you forgot where it was installed, use either command below to tell:

cat /usr/share/applications/FreeFileSync.desktop |grep Exec
cat $HOME/.local/share/applications/FreeFileSync.desktop |grep Exec