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

おすすめ記事