プログラミング逆引き辞典

~ 多言語対応のプログラミングレシピ ~

Kali Linuxで「apt update」時のエラー対処法

■Kali Linuxで「apt update」時のエラー対処法
 
Kali Linuxで「apt update」コマンドを実行した際にエラーになる場合はリポジトリのURLが古い可能性がある
その場合は下記手順でURLを更新する
 
 
①公式サイトで最新のURLを取得
「kali sources.list repositories」等のキーワードでインターネット検索
下記のページに行き当たるはず
「https://docs.kali.org/general-use/kali-linux-sources-list-repositories」
 
「Regular repositories」のURLをコピー

 
 
②Kali LinuxのTerminalを起動
 
 
③viコマンド等で「/etc/apt/sources.list」を編集


vi /etc/apt/sources.list

 
 
5行目の「deb http~」を①で取得したURLに書き換えて保存すればOK


# deb cdrom:[Debian GNU/Linux 2019.2 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20190508-08:43]/ kali-last-snapshot contrib main non-free

#deb cdrom:[Debian GNU/Linux 2019.2 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20190508-08:43]/ kali-last-snapshot contrib main non-free

deb http://http.kali.org/kali kali-rolling main non-free contrib
# deb-src http://http.kali.org/kali kali-rolling main non-free contrib

# This system was installed using small removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were disabled at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.