我正在尝试将FreeFileSync安装到Ubunto 16.04。我按照
上的说明操作https://launchpad.net/freefilesync
sudo add-apt-repository ppa:freefilesync/ffs
似乎运行正常,该网站 http://www.dlecan.com/archives/56-How-to-install-FreeFileSync-on-Ubuntu-PPA-Edited.html 未找到 http://doc.ubuntu-fr.org/freefilesync提供相同的建议。
然而,命令
sudo apt-get install freefilesync
结果为package freefilesync not found
我错了什么?
答案 0 :(得分:0)
问题是launchpad repo尚不支持 Xenial 。
您可以执行以下操作:
~$ sudo add-apt-repository ppa:freefilesync/ffs
将文件/etc/apt/sources.list.d/freefilesync-ffs-*.list
编辑为:
deb http://ppa.launchpad.net/freefilesync/ffs/ubuntu trusty main
deb-src http://ppa.launchpad.net/freefilesync/ffs/ubuntu trusty main
,最后安装以前的发行包:
~$ sudo apt-get clean all
~$ sudo apt-get update
~$ sudo apt-get install freefilesync
注意:我测试了这些说明,在precise
版本上安装了trusty
软件包,而不是在您的系统上。