我正在使用 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.
答案1
您不应该使用 Debian 存储库对于 Kali Linux。
要么使用 Kali 存储库,要么从 Kali 切换到其他发行版。
由于您是初学者,因此考虑初学者发行版很有意义。Kali 不是初学者发行版。相反,我会推荐 Mint、Ubuntu 或 Fedora(但这不是详尽的列表)。
答案2
你的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
答案3
删除 debian 主 PPA 似乎不支持这样做
- 打开软件并更新应用程序
- 转到其他软件选项卡
- 取消选中 debian main ppa
- 单击恢复
如果您的 kali 机器中没有软件和更新应用程序,请从终端中删除 ppa
- 打开终端
sudo ls /etc/apt/sources.list.d
sudo rm -i /etc/apt/sources.list.d/(replace_with_PPA_Name).list
然后sudo apt-get update
告诉我你发生了什么事