我正在尝试通过以下方式在 Raspberry Pi 上安装 dnsutils
sudo apt-get install dnsutils
我收到以下错误消息:
Err:1 http://raspbian.raspberrypi.org/raspbian buster/main armhf libirs161 armhf 1:9.11.5.P4+dfsg-5.1+deb10u1
404 Not Found [IP: 93.93.128.193 80]
Err:2 http://raspbian.raspberrypi.org/raspbian buster/main armhf dnsutils armhf 1:9.11.5.P4+dfsg-5.1+deb10u1
404 Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/b/bind9/libirs161_9.11.5.P4+dfsg-5.1+deb10u1_armhf.deb 404 Not Found [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/b/bind9/dnsutils_9.11.5.P4+dfsg-5.1+deb10u1_armhf.deb 404 Not Found [IP: 93.93.128.193 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
由于某种原因,它无法找到这些文件。我不确定是否还有其他人在 Raspberry Pi 上遇到此问题,并且我不确定我还可以如何安装它。有什么建议么?
答案1
问题是存储库更改了版本。更新需要在apt-get update
工作之前明确接受。接受更改的命令是
sudo apt-get update --allow-releaseinfo-change
要应用更改,需要通过以下方式升级存储库
sudo apt-get upgrade
然后,dnsutils
就安装成功了
sudo apt-get install dnsutils