apt-get 更新大小不匹配错误

apt-get 更新大小不匹配错误

我正在使用 Ubuntu 15.04 Vivid。当我尝试更新时,我收到Size mismatch如下错误:

$apt-get update
...                           
Get:92 http://ports.ubuntu.com/ubuntu-ports/ vivid/main rename all 0.20-3 [11.9 kB]
Get:93 http://ports.ubuntu.com/ubuntu-ports/ vivid/main libcgi-fast-perl all 1:2.04-1 [9984 B]
Fetched 17.5 MB in 38s (458 kB/s)
E: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/pool/main/i/isc-dhcp/isc-dhcp-common_4.3.1-5ubuntu2.2_ppc64el.deb  Size mismatch

对应的行/etc/apt/sources.list如下:

deb http://ports.ubuntu.com/ubuntu-ports/ vivid universe

答案1

似乎是暂时错误。请稍后重试并保持耐心。;)

而且没有理由使用

deb http://ports.ubuntu.com/ubuntu-ports/ vivid universe

在 Vivid 安装中。

因此删除你的sources.list

sudo sed -i '/ports\.ubuntu\.com/d' /etc/apt/sources.list
sudo apt-get update

相关内容