1. 程式人生 > >ifconfig命令無法找到,提示bash: ifconfig: command not found

ifconfig命令無法找到,提示bash: ifconfig: command not found

pat sso and not found then 找不到文件 打開 分享 註銷

問題就是題目那樣,具體解決方法截圖如下:

分析問題
1.whereis ifconfig 看一下這個命令在哪個目錄下

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

3.執行命令,需要指定路徑或者把目錄加入PATH中
4.於是可以這樣訪問
方法一:[[email protected] sbin]$ /sbin/ifconfig 就可以出現使用了
方法二:[[email protected] sbin]$ export PATH=$PATH:/sbin ,這樣設置後,下次就可以直接訪問了,免處第一種的麻煩,如:

[[email protected] /]$ 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

方法二操作實例:

技術分享

在終端或純文本界面下,打開用戶主目錄下的.bash_profile文件
#cd ~ 進入用戶目錄,否則找不到文件.bash_profile
#ls -a
#vi .bash_profile
在PATH那行後面加上/sbin,用冒號分割,如
PATH=$PATH:$HOME/bin:/sbin
保存退出後,

source .bash_profile

或重新註銷、登錄,就可以生效了。

ifconfig命令無法找到,提示bash: ifconfig: command not found