sudo apt update --allow-unauthenticated 给出错误“存储库没有发布文件”“无法安全地从这样的存储库更新”

sudo apt update --allow-unauthenticated 给出错误“存储库没有发布文件”“无法安全地从这样的存储库更新”

在 Ubuntu 21.04 上,当我运行

sudo apt update --允许未经身份验证

我收到错误消息,指出存储库没有发布文件,并且无法安全地从此类存储库进行更新,因此默认情况下被禁用。我在 /etc/apt/sources.list 中的所有来源都像

deb [允许不安全=是,受信任=是]http://us.archive.ubuntu.com/ubuntu多毛主要受限

我也尝试过 [allow-insecure=yes] 和 [trusted=yes] 并得到相同的错误。我怎样才能更新?

答案1

问题不在于身份验证,而在于 Hirsute 已达到其生命周期并已从主镜子中删除。你需要使用

deb [allow-insecure=yes,trusted=yes] http://old-releases.ubuntu.com/ubuntu hirsute main restricted
deb [allow-insecure=yes,trusted=yes] http://old-releases.ubuntu.com/ubuntu hirsute-security main restricted

等等(最好升级到 Jammy。)

相关内容