无法更新 Ubuntu 18.04,错误:存储库不再签名

无法更新 Ubuntu 18.04,错误:存储库不再签名

我正在使用 Ubuntu 18.04。当我尝试更新时,sudo apt update出现以下错误:

E: Failed to fetch http://ppa.launchpad.net/susan-spencer/seamly2d/ubuntu/dists/bionic/InRelease  403  Forbidden [IP: 91.189.95.85 80]
E: The repository 'http://ppa.launchpad.net/susan-spencer/seamly2d/ubuntu bionic InRelease' is no longer signed.
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.

有人能提供如何修复此问题的说明吗?我将非常感激分步说明。

答案1

seamly2d软件包不再存在于 的 PPA 中susan-spencer。需要将其删除。

我们有一个关于删除 PPA 的非常活跃的问题:如何删除 PPA?该问题的答案包括删除 PPA 的分步说明。

您可能还想阅读:PPA 可以安全地添加到我的系统中吗?需要注意哪些“危险信号”?PPA 不是官方的 Ubuntu 软件任何人都可以制作 PPA 来分发软件。某些 PPA 可能会破坏您的系统,尤其是当它们过时、晦涩难懂和/或维护不善时。

另请注意,sudo apt update仅更新可用软件列表。虽然此命令应该在执行任何其他操作之前运行,但如果您想实际对已安装的软件执行更新,apt您还应该sudo apt upgrade在之后运行。sudo apt update

相关内容