ubuntu更新错误:dists/artful/main/binary-arm64/Packages 404 Not Found

Failed to fetch http://archive.ubuntu.com/ubuntu/dists/artful/main/binary-arm64/Packages  404  Not Found [IP: 91.189.88.162 80]

困扰了很久的ubuntu更新错误,后来终于找到了答案:

https://askubuntu.com/questions/705895/how-to-fix-a-failed-to-fetch-binary-armhf-packages-error-during-apt-get-update

解释是可能安装了arm64这一外部异常架构,而可能只能有一种吧,所以软件源更新时就会报错,查看是否是这个原因只需要:

dpkg --print-foreign-architectures

我的输出结果是:

i386
arm64

可以看到有两个外部架构,需要去掉一个,我去掉的是arm64:

sudo dpkg --remove-architecture arm64

然后sudo apt-get update就正常了。

你可能感兴趣的:(debug,ubuntu系统配置)