我正在尝试安装k9copy,但遇到了以下问题:
Error: Dependency is not satisfiable: libav-tools
如果执行sudo apt-get install libav-tools
,将得到以下输出:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libav-tools is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
ffmpeg:i386 ffmpeg
E: Package 'libav-tools' has no installation candidate
我已经安装了FFmpeg (从存储库),并且似乎没有任何在线指南来解决这个问题。
发布于 2018-06-15 23:56:02
正如道格所指出的,仍然有可能在仿生海狸下使用“非官方”deb包重新加载k9副本(而不是长期失效的k9copy)。从源代码编译将是另一种选择,但编译这样一个较旧的应用程序的好处可能不会超过相当大的麻烦。
按以下方式安装:
wget http://tomtomtom.org/k9copy-reloaded/k9copy_3.0.3-1~deb9u1_amd64.deb
sudo dpkg -i k9copy_3.0.3-1~deb9u1_amd64.deb
sudo apt-get install -f
这在我的仿生海狸安装上安装得足够好,但是要在Ubuntu 'Finder‘中找到应用程序,需要对2个桌面文件进行一些调整(感谢雪佛兰的检测工作!)
现在一切都会好起来的。免费截图如下:
发布于 2018-12-02 23:41:28
这里的另一个解决方案已经不再适用于在18.10上安装k9copy,但是有一个更简单的解决方案:在https://launchpad.net/~tomtomtom/+archive/ubuntu/k9copy上有一个实际维护的(在撰写本文时) PPA。
在Ubuntu 18.04、18.10、20.04和22.04中,打开终端并键入:
sudo add-apt-repository ppa:tomtomtom/k9copy
sudo apt update
sudo apt install k9copy
https://askubuntu.com/questions/1044276
复制相似问题