Linux

找不到 ifconfig 和 locate 命令

  • January 29, 2021

我是 linux-ubuntu 的新手,我ifconfig the not found在終端中看到,我寫sudo yum install new-tool了但出現了yum the not found錯誤。什麼意思,我必須安裝ifconfig嗎?還是有像這些命令這樣的替代命令

不同的 Linux 發行版有不同的工具來安裝軟體包,稱為軟體包管理器 - 您需要為您的發行版使用正確的工具。Yum 是 Red Hat 系統的包管理器。相反,您需要使用 apt,Ubuntu 的包管理器。嘗試:

sudo apt install net-tools locate

這種模式應該適用於 Ubuntu 上的大多數軟體包。net-tools是 Ubuntu 上包含 ifconfig 的軟體包。但是, ifconfig 已經過時並且已經過時了好幾年。您應該使用ip,它應該已經安裝在 Ubuntu 中。

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