Kali Linux 시스템을 업데이트하는 데 문제가 있습니다. 아래는 출력입니다.

Kali Linux 시스템을 업데이트하는 데 문제가 있습니다. 아래는 출력입니다.
─# apt-get update                                                      100 ⨯
Hit:1 http://dl.google.com/linux/chrome/deb stable InRelease
Ign:2 http://ppa.launchpad.net/cybermax-dexter/sdl2-backport/ubuntu impish InRelease
Err:4 http://ppa.launchpad.net/cybermax-dexter/sdl2-backport/ubuntu impish Release
  404  Not Found [IP: 91.189.95.85 80]
Hit:3 http://kali.download/kali kali-rolling InRelease
Reading package lists... Done                    
E: The repository 'http://ppa.launchpad.net/cybermax-dexter/sdl2-backport/ubuntu impish Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

답변1

Kali 시스템이 복구할 수 없는 손상을 입힐 수 있는 Kali 이외의 저장소를 사용하고 있습니다. 읽어주세요

다음 명령을 사용하여 이 문제를 해결할 수 있습니다. 그러면 저장소 컬렉션이 다시 표준 세트로 재설정됩니다. 그러나 Kali가 아닌 리포지토리에서 설치한 항목에 따라 여전히 해결되지 않은 패키지 충돌이 있을 수 있습니다.

find /etc/apt/sources.list* -type f -name '*.list' -exec mv -f {} {}.old \;
echo 'deb http://http.kali.org/kali kali-rolling main non-free contrib' >/etc/apt/sources.list

apt-get update

관련 정보