ubuntu 狡猾的消息来源去了哪里?

Where did the ubuntu wily sources go?

我无法获取 apt-get 中的错误:

Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/wily/main/binary-amd64/Packages 404 Not Found [IP: 91.189.91.23 80]

我以为是源错误,或 DNS 错误,但 /dists/wily/ 在 us.archive.ubuntu.com 确实不存在了。它也不存在于我尝试过的几个镜像中。它去哪儿了?现在有效的 wily 来源是什么?

wily 版本在 EOL(生命周期结束):不再支持。

您必须按照以下步骤使用 apt-get,通过设置使用旧版本存储库:

https://help.ubuntu.com/community/EOLUpgrades

1) 用sudo修改文件/etc/apt/sources.list,例如:

sudo nano /etc/apt/sources.list

2) 放入:

deb http://old-releases.ubuntu.com/ubuntu/ wily main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ wily main universe restricted multiverse

deb http://old-releases.ubuntu.com/ubuntu/ wily-security main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ wily-security main universe restricted multiverse

deb http://old-releases.ubuntu.com/ubuntu/ wily-updates main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ wily-updates main universe restricted multiverse

3) 保存文件

4) 做:sudo apt-get update