我无法在 apt-get 中获取错误:
无法获取 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 上真的不存在了。它也不存在于我尝试过的几个镜像中。它去哪儿了?现在有效的狡猾来源是什么?
我无法在 apt-get 中获取错误:
无法获取 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
版本在EOL
(End of Life): 不再受支持。
您必须按照以下步骤通过设置 oldversion 存储库的使用来使用 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