apache2 由于“哈希总和不匹配”和“错误的标题行错误的标题数据 [IP:192.168.1.151 808]”而安装失败(Ubuntu 18.04)

apache2 由于“哈希总和不匹配”和“错误的标题行错误的标题数据 [IP:192.168.1.151 808]”而安装失败(Ubuntu 18.04)

我检查了重复的问题

哈希值不匹配

并运行这些命令

sudo rm -rf /var/lib/apt/lists/*

sudo apt-get update

一切运行正常,直到我尝试安装阿帕奇2使用命令

sudo apt-get install apache2

这时我得到了哈希值不匹配并且坏的标题行 坏的标题数据

Err:3 http://in.archive.ubuntu.com/ubuntu bionic/main amd64 liblua5.2-0 amd64 5.2.4-1.1build1
Bad header line Bad header data [IP: 192.168.1.151 808]
Fetched 19.4 kB in 3s (7,756 B/s)
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/main/a/apr-util/libaprutil1-ldap_1.6.1-2_amd64.deb  Hash Sum mismatch
Hashes of expected file:
- SHA256:77045fb05b8db8960e6dcdc6339141781a13719bbc2d94452b762fdbbcc9c9fe
- SHA1:6e6549483a1a60dd027c141e5a0d6fe2facad3a5 [weak]
- MD5Sum:ab9dde6f6554add8d4100974bb907363 [weak]
- Filesize:8764 [weak]
Hashes of received file:
- SHA256:c0ee4206cdf0ce092b33ad56b5d230979cc1ec3666df6ab2b5282bb058ebd304
- SHA1:86cd9504ec5ac110e3476381c01156ba11f03b73 [weak]
- MD5Sum:a4faf00c1562fdfd8af187053422aa25 [weak]
- Filesize:8764 [weak]
Last modification reported: Tue, 27 Feb 2018 09:19:27 +0000

我还检查了通过代理地址使用互联网的问题。

错误代码中的 IP 192.168.1.151:808 是用于访问互联网的代理地址。我通过在文件中提及以下几行来使用/etc/apt/apt.conf

Acquire::http::Proxy "http://192.168.1.151:808";
Acquire::https::Proxy "http://192.168.1.151:808";
Acquire::ftp::Proxy "http://192.168.1.151:808";

我怎样才能安装 apache2 并且不出现任何错误?

答案1

使用sudo apt-get install software而不是sudo apt install software解决问题。

相关内容