从 PPA 安装软件包时遇到问题

从 PPA 安装软件包时遇到问题

可能重复:
如何使用 PPA 修复 404 错误?

在 Ubuntu 11.10 32 位上,我尝试安装软件包更新来修复错误详情这里

在评论中#25罗伯特·胡克提供了关联他的包裹。

我已按照页面上的说明将其添加到我的存储库(手动和从终端),当我运行 sudo apt-get update 时,我最后收到此消息:

W: Failed to fetch  ppa.launchpad.net/sarvatt/sru3/ubuntu/dists/oneiric/main/source/Sources  404  Not Found
W: Failed to fetch ppa.launchpad.net/sarvatt/sru3/ubuntu/dists/oneiric/main/binary-i386/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

我如何获取并安装这些软件包?

答案1

该软件包似乎不适用于 Ubuntu 11.10,仅适用于一些较早的版本。你可以自己看看这里

要获取这些包,您需要手动修改您的/etc/apt/sources.list包含此 PPA 的旧发行版。例如

deb http://ppa.launchpad.net/sarvatt/sru3/ubuntu natty main 
deb-src http://ppa.launchpad.net/sarvatt/sru3/ubuntu natty main 

然后运行

apt-get update
apt-get install xserver-xorg-input-synaptics

注意:此 xorg 修复程序可能不适用于您,因为它适用于不同版本的 Ubuntu。您最好向作者索取适用于您版本的修复程序。

相关内容