当我输入 sudo apt-get update 时出现 404 未找到错误

当我输入 sudo apt-get update 时出现 404 未找到错误

在终端中插入此命令行

sudo apt-get update

W: Failed to fetch http://ppa.launchpad.net/gwibber-daily/ppa/ubuntu/dists/trusty/main/binary-amd64/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

答案1

这是正确的,原因是:此 PPA 中没有适用于 Trusty 的软件包. 删除 PPA。打开终端并运行:

find /etc/apt -type f -name '*.list' -exec sudo sed -i '/gwibber-daily/d' {} \;
sudo apt-get update

该软件包gwibber位于 Trusty Universe 存储库中。要启用存储库,请执行以下操作:

sudo apt-add-repository universe
sudo apt-get update

答案2

打开“软件和更新”程序,单击“其他软件” - 向下滚动列表,直到看到类似以下内容的条目http://ppa.launchpad.net/ppa:gwibber-daily/ppa,然后取消选中它的选择框。此 PPA 不支持 Ubuntu Trusty。

相关内容