每当我 sudo apt-get update 时都会出现错误。以下是日志中的错误:
Err:13 http://ppa.launchpad.net/ehoover/compholio/ubuntu eoan Release
404 Not Found [IP: 91.189.95.83 80]
Err:14
http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu eoan Release
404 Not Found [IP: 91.189.95.83 80]
Err:15
http://ppa.launchpad.net/pipelight/stable/ubuntu eoan Release
404 Not Found [IP: 91.189.95.83 80]
E: The repository 'http://ppa.launchpad.net/ehoover/compholio/ubuntu
eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is
therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user
configuration details.
E: The repository 'http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu
eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is
therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user
configuration details.
E: The repository
'http://ppa.launchpad.net/pipelight/stable/ubuntu eoan Release' does
not have a Release file.
N: Updating from such a repository can't be
done securely, and is therefore disabled by default.
N: See
apt-secure(8) manpage for repository creation and user configuration
details.
此外,当我尝试sudo add-apt-repository ppa:openrazer/daily
添加任何其他存储库时,我收到类似的错误
有人能帮我解决这个问题吗?互联网上有一些答案,但我是初学者,所以我不明白如何解决我的具体问题而不是类似的问题...提前谢谢了!
答案1
欢迎来到 Ask Ubuntu!
你有一堆个人包裹档案您的安装中无效/不再有效的 PPA。您必须针对 引发的每个错误删除 PPA apt
。您可以按如下方式执行此操作:
为了
Err:13 http://ppa.launchpad.net/ehoover/compholio/ubuntu eoan Release 404 Not Found [IP: 91.189.95.83 80]
PPA 名称为ehoover/compholio
。您必须删除此 PPA。这可以通过两种方式实现。
方法 1
要删除您需要安装的 PPA ppa-purge
(或者,如果您不想安装任何附加软件包,请参阅方法 2)。
$ sudo apt-get install ppa-purge
你可以通过运行命令来删除此 PPA
$ sudo ppa-purge ppa:ehoover/compholio
同样,对遇到的每个错误行运行该命令。您的情况的完整列表如下
sudo ppa-purge ppa:ehoover/compholio
sudo ppa-purge ppa:gnome-terminator/ppa
sudo ppa-purge ppa:pipelight/stable
方法 2
您也可以使用内置add-apt-repository
命令来实现这一点。这与方法 1 类似。
sudo add-apt-repository -r ppa:ehoover/compholio
sudo add-apt-repository -r ppa:gnome-terminator/ppa
sudo add-apt-repository -r ppa:pipelight/stable
据我所知,这些 PPA 没有 19.10 的资源,所以你必须等待。(我可能错了)