Como instalar o freefilesync no Kubuntu 18.04

2

Por que não há versão do freefilesync para o Ubuntu 18.04 ou o KDE 18.04 LTS?

Quando faço a execução das linhas acima tenho a seguinte linha no

freefilesync-ubuntu-ffs-bionic.list

Mas a execução, em seguida, apt-get update fornece o seguinte ERRO:

Fehl:7 http://ppa.launchpad.net/freefilesync/ffs/ubuntu bionic Release                                                                                   
  404  Not Found [IE: Das Depot »http://ppa.launchpad.net/freefilesync/ffs/ubuntu bionic Release« enthält keine Release-Datei.
N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
P: 91.189.95.83 80]
    
por fizzlifax 10.06.2018 / 23:39

2 respostas

3

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 .

    
por N0rbert 11.06.2018 / 13:12
2

O depósito " link bionic Release" não contém um arquivo de lançamento.

Não há pacote para o Ubuntu Bionic (18.04) neste PPA

    
por cmak.fr 10.06.2018 / 23:44