当我尝试在 linux mint 上执行 apt update 时,出现了这个奇怪的错误。有什么建议我可以解决这个问题吗?
Reading package lists... Done
E: The repository 'http://www.sourceslist.eu/repo/ubuntu lucid Release' is not 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.
这是我的来源列表
#deb cdrom:[Linux Mint 19.1 _Tessa_ - Release amd64 20181217]/ bionic contrib main non-free
deb http://www.sourceslist.eu/repo/ubuntu lucid main non-free
答案1
我没有使用Ubuntu
,因此无法测试这一点,但是按照错误消息的建议阅读页面man
并apt-secure(8)
从那里转到sources.list(5)
,看来如果您迫切希望继续使用,lucid
则需要编辑您的sources.list
以允许不安全的降级。
从man
页面来看,语法可能是
deb [ allow-downgrade-to-insecure=yes ] http://www.sourceslist.eu/repo/ubuntu lucid main non-free
请注意:此降级被明确声明为潜在的安全风险。
更好的选择是升级您的版本。显然,即使从过时的版本到当前的版本,这也可以在不重新安装的情况下完成,这在Ubuntu社区......但如果你这样做的话,请先备份。
你可以尝试的另一件事第一的正在将您的镜像更改为升级说明中的镜像,看看该镜像是否仍然经过签名,我认为应该是。这是上面的 Ubuntu 社区链接,可能如下所示
deb http://old-releases.ubuntu.com/ubuntu lucid main non-free
尽管快速浏览存储库 ftp 并没有显示任何non-free
元素。
该解决方案似乎在其他方面有效这些好人