Fedora是Linux系統中的一種,大部分的操作也需要命令來完成,有用戶反映在Fedora系統下使用ifconfig、netstat命令的時候,發現這2個命令找不到了,下面小編就給大家介紹下解決方法。
如果出現下面問題:
[root@thunderspeed ~]# ifconfig
bash: ifconfig: command not found.。。
[root@thunderspeed ~]#
[root@thunderspeed ~]# netstat
bash: netstat: command not found.。。
[root@thunderspeed ~]#
分析問題
1.whereis ifconfig 看一下這個命令在哪個目錄下
2.echo $PATH 看一下該目錄是否在路經下,注意lunux下是完全區分大小寫的,所以不要忽略這點
3.執行命令,需要指定路徑或者把目錄加入PATH中
於是可以這樣訪問
方法一:[root@localhost sbin]$ /sbin/ifconfig 就可以出現使用了
方法二:[root@localhost sbin]$ export PATH=$PATH:/sbin ,這樣設置後,下次就可以直接訪問了,免處第一種的麻煩,如:
[root@localhost /]$ ifconfig
修改/etc/profile文件,注釋掉if語句即可
把下面的if語句注釋掉:
# Path manipulation
if [ “$EUID” = “0” ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
fi
修改為
# Path manipulation
# if [ “$EUID” = “0” ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
#fi
如果還不行可能需要安裝一下使用provides搜索依賴包
sudo yum provides ifconfig
搜索結果是: net-tools 因此需要安裝 net-tools包即可
sudo yum install net-tools
保存,重新啟動
上面就是Fedora找不到ifconfig、netstat命令的方法介紹了,如果你通過本文介紹的方法解決不了問題,也可嘗試重新安裝這兩個命令。