由于压缩,Apt 无法获取源代码

由于压缩,Apt 无法获取源代码

我的 Debian 服务器(3.2.60-1+deb7u3 x86_64)无法从 获取更新security.debian.org。我认为这是由存储库引起的,因为存储库中只有压缩文件。我该如何修复它?

获取错误

W: Failed to fetch http://security.debian.org/dists/wheezy/updates/main/binary-amd64/Packages  404  Not Found [IP: 212.211.132.32 80]
W: Failed to fetch http://security.debian.org/dists/wheezy/updates/main/binary-i386/Packages  404  Not Found [IP: 212.211.132.32 80]

来源设置

deb http://ftp.cz.debian.org/debian/ wheezy main
deb-src http://ftp.cz.debian.org/debian/ wheezy main

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

deb http://ftp.cz.debian.org/debian/ wheezy-updates main
deb-src http://ftp.cz.debian.org/debian/ wheezy-updates main

答案1

我已根据 Glueon 的评论修复了此问题。现在运行正常。

遇到了同样的问题。sudo apt-get clean;sudo apt-get update 没有帮助。我记得我删除了 securiy repo,执行了 apt-get update,然后将其添加回来,并再次执行 apt-get update。

答案2

这是一个已知错误。该错误报告中解释的解决方法是运行

sudo find /var/lib/apt -type f -exec rm {} \+
sudo apt-get update  

它对我有用。

答案3

尝试重建你的 apt 缓存:

sudo apt-get clean
sudo apt-get update

然后看看它是否有效。

相关内容