当我尝试在 Ubuntu 14.04 上安装 apache2 时,我收到以下错误消息:
root@Final-Gitsetup-Developers:~# apt-get install apache2
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package apache2 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
libapache2-mpm-itk libapache2-mpm-itk:i386
E: Package 'apache2' has no installation candidate
结果apt-cache policy | grep http | awk '{print $2 $3}' | sort -u
http://archive.ubuntu.com/ubuntu/trusty/universe
http://repo.mysql.com/apt/ubuntu/wily/mysql-5.6
http://repo.mysql.com/apt/ubuntu/wily/mysql-apt-config
http://repo.mysql.com/apt/ubuntu/wily/mysql-tools
/etc/apt/sources.list
您的文件中包含字符串(Ubuntu 15.10) 的所有软件源wily
都与您的 Ubuntu 14.04 软件源冲突并阻止您安装 apache2。要解决此问题,请在包含字符串的每一行前面wily
加上xenial
一个#
字符,以便将其转换为注释。/etc/apt/sources.list
使用 nano 文本编辑器编辑文件。打开终端并输入:Ubuntu 14.04 的标准 sources.list 文件如下所示:
上述标准 sources.list 文件中的每一行都有字符串
trusty
,因为您使用的是 Ubuntu 14.04。将其他 Ubuntu 版本(例如 15.10 或 16.04)的存储库添加到您的 Ubuntu 14.04 软件源是非常糟糕的包管理。Nano 编辑器键盘快捷键
使用键盘组合Ctrl+ O,然后按下Enter将文件保存到当前位置。
使用键盘组合Ctrl+X退出 nano。
更新可用软件列表并安装 apache2。