我得到迪斯科已经没有发布文件了。我该怎么解决这个问题?我得到的错误是
Err:9 https://us.archive.ubuntu.com/ubuntu disco Release
404 Not Found [IP: 91.189.91.39.80]
Err:10 https://us.archive.ubuntu.com/ubuntu disco-updates Release
404 Not Found [IP: 91.189.91.39.80]
Err:11 https://us.archive.ubuntu.com/ubuntu disco-backports Release
404 Not Found [IP: 91.189.91.39.80]
Error:12 https://us.archive.ubuntu.com/ubuntu disco-security Release
404 Not Found [IP: 91.189.91.39.80]
Reading Package lists...
E: The repository 'https://us.archive.ubuntu.com/ubuntu disco Release' no longer has a Release file
E: The repository 'https://us.archive.ubuntu.com/ubuntu disco-updates Release' no longer has a Release file
E: The repository 'https://us.archive.ubuntu.com/ubuntu disco-backports Release' no longer has a Release file
E: The repository 'https://us.archive.ubuntu.com/ubuntu disco-backports Release' no longer has a Release file
E: The repository 'https://us.archive.ubuntu.com/ubuntu disco-security Release' no longer has a Release file
它有更多,但我不认为这是重要的,如果你想让我包括它,只要问我会。
发布于 2020-05-14 19:27:12
您正在尝试从dingo存储库(ubuntu19.04)添加一个存储库/安装。这个版本已经到了生命的尽头,不再被支持。这就是为什么回购不再有发布文件的原因。
您应该使用的版本(如果您仍然对19.x版本感兴趣)是ubuntu19.10( Ermine),但是您也应该记住,这个版本不会支持很长时间。
另外,关于您提到的版本:Ubuntu18.2不存在,ubuntu22.04版本计划在2022年4月发布)。Ubuntu20.04是目前最新的版本。
有关更多信息:Ubuntu 19.10 (Eoan Ermine)、Ermine发行说明、Ubuntu生命周期和发布时间
发布于 2020-05-14 19:36:14
如果您没有支持ubuntu版本的PC和iso,请在安装Ubuntu时取消检查下载更新。
然后您可以下载20.04,用它编写安装介质,然后使用它重新安装Ubuntu。
与其从不受支持的版本升级,不如重新安装它。
使用下一个命令替换不推荐的存储库记录中的一些名称(如果您想在重新安装之前安装apt ):
sudo sed -i -re 's/([a-z]{2}\.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
该命令将us.archive.ubuntu.com
和security.ubuntu.com
替换为/etc/apt/sources.list
文件中的old-releases.ubuntu.com
。你可以用nano
手工完成它。然后是sudo apt update
等等。
https://askubuntu.com/questions/1239589
复制相似问题