当我尝试使用命令在 Ubuntu 18.04 中安装 Apache 时sudo apt install apache2
,我得到:
E: Distorted line 2 in the sources list /etc/apt/sources.list.d /official-package-repositories.list
E: The list of sources is not read.
E: Distorted line 2 in the sources list /etc/apt/sources.list.d/official-package-repositories.list
第二行包含单词universe
。删除后,我得到:
The apache2 package is not available, but is listed in the dependency list of another package.
E: No installation candidate found for the “apache2” package.
注释掉第 2 行,在
//etc/apt/sources.list.d/official-package-repositories.list
该行前面加上 # 字符。打开终端并输入:注释掉第 2 行。
使用 nano 编辑器的说明始终位于每页的底部。按键盘组合Ctrl+ O,然后按Enter保存正在编辑的文件。按键盘组合Ctrl+X退出 nano。
将主存储库添加到
/etc/apt/sources.list
. 使用 nano 文本编辑器打开/etc/apt/sources.list
并添加以下行。如果您在sources.list 中收到关于您添加的4 个新行中的任何一个的重复条目,您可以
/etc/apt/sources.list
在nano 文本编辑器中再次打开,并通过在它们前面加上# 来注释掉重复的行。更新可用软件列表并尝试再次安装 apache2。