进行软件更新时,我收到错误。解决问题时我收到此信息:
$ sudo apt-get update
W: Failed to fetch http://ppa.launchpad.net/noskcaj/indicator-gtk3/ubuntu/dists/trusty/main/binary-i386/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
存储库有问题吗?或者我应该注释掉该存储库?
答案1
此存储库不再存在。您应该将其删除。
sudo ppa-purge ppa:noskcaj/indicator-gtk3
很抱歉带来坏消息!
答案2
正如前面的答案中所说,您不需要删除存储库,而只需在命令中使用键 --fix-missing 来避免问题发生,并找到您要连接的存储库的替代方案,如下所示:
sudo apt-get update--fix-missing
这就能达到目的了。