Apt

Kali Linux 上的 apt-get update 問題

  • October 23, 2020

我正在使用 Kali,而我的 Mac Book Pro 在 Wi-Fi 監控方面存在一些問題,所以我試圖解決它們,但是當我鍵入命令時,會 apt-get update出現以下情況:

Ign:1 debian.org/debian main InRelease
Err:2 .jp.debian.org/debian main Release
 404  Not Found
Reading package lists... Done
E: The repository 'http://ftp.jp.debian.org/debian main 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.

sources.list應該只包含以下行:

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

打開終端並執行以下命令:

echo deb http://http.kali.org/kali kali-rolling main contrib non-free > /etc/apt/sources.list
apt-get update && apt-get upgrade && apt-get dist-upgrade

你不應該為 Kali Linux 使用 Debian 儲存庫。

要麼使用 Kali 儲存庫,要麼從 Kali 切換到不同的發行版。

由於您是初學者,因此考慮初學者的發行版會很有意義。Kali 不是初學者的發行版。相反,我會推薦 Mint、Ubuntu 或 Fedora(但這不是一個詳盡的列表)。

引用自:https://unix.stackexchange.com/questions/397134