如果出現下面問題:
[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
儲存,重新啟動