https://blog.csdn.net/xu1314/article/details/6951762
1.whereis ifconfig 看一下這個命令在哪個目錄下
2.echo $PATH 看一下該目錄是否在路經下,注意lunux下是完全區分大小寫的,所以不要忽略這點
3.執行命令,需要指定路徑或者把目錄加入PATH中
4.於是可以這樣訪問
方法一:[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
注:不光是ifconfig命令出現“bash: ifconfig: command not found”,原因非root用戶的path中沒有/sbin/ifconfig
,其它的命令也可以出現這種情況,解決的方法是一樣的。