当我试图用sudo apt更新更新我的Ubuntu17.10系统时,我收到了其中一个存储库的以下错误:
Err:9 http://ppa.launchpad.net/ubuntu-desktop/ubuntu-make/ubuntu artful Release
404 Not Found
E: The repository 'http://ppa.launchpad.net/ubuntu-desktop/ubuntu-make/ubuntu artful Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.我无法在/etc/apt/sources.list或/etc/apt/sources.list.d中跟踪存储库,这个问题是最近观察到的。有人能告诉我如何找到这个存储库并禁用或删除它吗?由于这个错误,我无法更新我的系统。谢谢
发布于 2018-03-18 17:59:13
上面提到的存储库没有任何巧妙的包(17.10),这会导致404。你必须把它从你的配置中移除。
您应该可以通过软件和更新设置GUI来实现这一点,或者找到提到它的源列表文件并删除或注释该行。
就像你说你很难找到它一样,试着:
grep -r --include "*.list" "^deb" /etc/apt/sources.list* | grep "ubuntu-make"这将显示配置此PPA的行的文件名、行号和内容。
https://askubuntu.com/questions/1017069
复制相似问题