Você tem duas opções aqui:
-
Use FreeFileSync 9.2 de getdeb.net (para o obsoleto Ubuntu 17.04) - adicionar repositório , instale o pacote e remova o repositório:
sudo add-apt-repository "deb http://archive.getdeb.net/ubuntu zesty-getdeb apps" sudo wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add - sudo apt-get update sudo apt-get install freefilesync sudo add-apt-repository -r "deb http://archive.getdeb.net/ubuntu zesty-getdeb apps"
-
Faça o download do arquivo FreeFileSync 10.3 do site oficial , extraia-o, crie os atalhos necessários ( .desktop - arquivos), adicione à variável
PATH
e aproveite:# 1. Create ~/Software folder and download here mkdir ~/Software cd ~/Software xdg-open https://freefilesync.org/download/FreeFileSync_10.3_Linux_64-bit.tar.gz # save to ~/Software # if it don't work - click on "Download FreeFileSync 10.3 Linux 64-bit" #xdg-open https://freefilesync.org/download.php # extract the program tar -xf FreeFileSync_10.3_Linux_64-bit.tar.gz cd FreeFileSync # extract icons unzip Resources.zip FreeFileSync.png RealTimeSync.png mkdir -p ~/.local/share/icons/hicolor/256x256/apps/ mv {FreeFileSync,RealTimeSync}.png ~/.local/share/icons/hicolor/256x256/apps/ # 2. Create shortcuts for current user mkdir -p ~/.local/share/applications/ cat > ~/.local/share/applications/freefilesync.desktop << EOF [Desktop Entry] Name=FreeFileSync Comment=Keep files and folders synchronized Exec=FreeFileSync %f Terminal=false Type=Application Icon=FreeFileSync MimeType=application/x-freefilesync-ffs;application/x-freefilesync-batch Categories=Utility;FileTools;GTK; StartupWMClass=FreeFileSync StartupNotify=true EOF cat > ~/.local/share/applications/realtimesync.desktop << EOF [Desktop Entry] Name=RealtimeSync Comment=Start synchronization in real time Exec=RealTimeSync %f Terminal=false Type=Application Icon=RealTimeSync Categories=Utility;FileTools;GTK; MimeType=application/x-freefilesync-real StartupNotify=true EOF # add it to PATH echo "PATH=$PATH:$HOME/Software/FreeFileSync" >> ~/.bashrc echo "PATH=$PATH:$HOME/Software/FreeFileSync" >> ~/.profile source ~/.bashrc
faça o logout, faça o login novamente e você poderá usar FreeFileSync e RealTimeSync .