다음을 통해 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