Software-Installation

‘包 ufw 不可用,但被另一個包引用

  • January 14, 2021

我試圖使用 ufw 在 Kali 中安裝防火牆。這是不斷出現的問題。我試過使用

apt-get install ufw
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package ufw is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

有什麼幫助嗎?

Kali 只需要文件中的一行/etc/apt/sources.list

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

/etc/apt/sources.list如有必要,編輯sudo nano /etc/apt/sources.list並保存文件。

Nano 文本編輯器鍵盤快捷鍵

使用鍵盤組合Ctrl+ O,然後按下Enter將文件保存到目前位置。

使用鍵盤組合Ctrl+X退出 nano。

安裝ufw : ← 從 kali-rolling 儲存庫

sudo apt update
sudo apt install ufw

如果您想使用友好的 GUI 應用程序配置 ufw,請使用sudo apt install gufw.

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