天天看點

[問題解決]bash: ifconfig: command not found

遇到問題,參考網絡解決。

------

法一:[root@localhost sbin]$ /sbin/ifconfig 就可以出現使用了 

方法二:[root@localhost sbin]$ export PATH=$PATH:/sbin ,這樣設定後,下次就可以直接通路了,免處第一種的麻煩,如: 

[root@localhost /]$ ifconfig

--------------

[oracle@localhost /]$ ifconfig

提示:“bash: ifconfig: command not found”

于是我切換到root使用者下

[root@localhost /]$ ifconfig

依然提示:“bash: ifconfig: command not found”

分析問題

1.whereis ifconfig 看一下這個指令在哪個目錄下

2.echo $PATH 看一下該目錄是否在路經下,注意lunux下是完全區分大小寫的,是以不要忽略這點

3.執行指令,需要指定路徑或者把目錄加入PATH中

4.于是可以這樣通路

方法一:[root@localhost sbin]$ /sbin/ifconfig 就可以出現使用了

方法二:[root@localhost sbin]$ export PATH=$PATH:/sbin ,這樣設定後,下次就可以直接通路了,免處第一種的麻煩,如:

方法三:修改/etc/profile檔案,注釋掉if語句即可

把下面的if語句注釋掉:

# Path manipulation

if [ "$EUID" = "0" ]; then

pathmunge /sbin

pathmunge /usr/sbin

pathmunge /usr/local/sbin

fi

修改為

# if [ "$EUID" = "0" ]; then

#fi

注:不光是ifconfig指令出現“bash: ifconfig: command not found”,原因非root使用者的path中沒有/sbin/ifconfig

,其它的指令也可以出現這種情況,解決的方法是一樣的。

重新開機網卡的幾種方法:

一、network

利用root帳戶

# service network restart

二、ifdown/ifup

# ifdown eth0

# ifup eth0

三、ifconfig

# ifconfig eth0 down

# ifconfig eth0 up

[問題解決]bash: ifconfig: command not found