我有以下版本的 Ubuntu 系统:
Distributor ID: Ubuntu
Description: Ubuntu 11.04
Release: 11.04
Codename: natty
我尝试使用命令安装 pptp:
sudo apt-get install pptd
我收到了这条消息
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package pptd
我使用命令:
sudo apt-get update
这就是我得到的许多错误,例如:
Err http://us.archive.ubuntu.com saucy/multiverse Sources 404 Not Found [IP: 91.189.91.26 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/natty-security/universe/binary-i386/Packages 404 Not Found [IP: 91.189.88.162 80]
这是源列表中所写的内容
deb http://us.archive.ubuntu.com/ubuntu/ saucy universe
deb-src http://us.archive.ubuntu.com/ubuntu/ saucy universe
deb http://us.archive.ubuntu.com/ubuntu/ saucy-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ saucy-updates universe
deb http://archive.ubuntu.com/ubuntu/ natty main
deb-src http://archive.ubuntu.com/ubuntu/ natty main
## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ natty-updates main
deb-src http://archive.ubuntu.com/ubuntu/ natty-updates main
任何人都可以提供帮助
答案1
由于 Ubuntu Natty 已达到 EOL(使用寿命结束),因此无法获取。因此您需要更新源列表以安装此包。
但我想知道无礼的在您使用 natty 时,它进入了您的源列表。这是误导。考虑到您的系统是 Natty,请按照步骤更新您的源列表,以便您可以从旧的 repo 存档安装软件包。
备份当前源列表。
mv /etc/apt/sources.list /etc/apt/sources.list.old
创建新的源列表
nano /etc/apt/sources.list
将以下内容粘贴到其中。
德布http://old-releases.ubuntu.com/ubuntu/natty 主受限宇宙 多元宇宙
德布http://old-releases.ubuntu.com/ubuntu/natty-updates 主要受限宇宙多元宇宙
德布http://old-releases.ubuntu.com/ubuntu/natty-security 主受限宇宙多元宇宙
德布http://old-releases.ubuntu.com/ubuntu/natty-backports 主要受限宇宙多元宇宙
退出编辑器
Ctrl + x
是
现在更新
sudo apt-get 更新
安装所需的软件包。就这样。