CentOS 7 運行 ifconfig 提示 -bash: ifconfig: command not foundshell
VMWare安裝了CentOS7,選擇了最小安裝包模式,安裝完畢以後想查看一下本機的ip地址,發現報錯
bash
#ifconfig -bash: ifconfig: command not found
谷歌了一下,整理了一下解決思路ide
查看ifconfig命令是否存在spa
查看 /sbin/ifconfig是否存在.net
2.若是ifconfig命令存在,查看環境變量設置blog
#echo $PATHip
若是環境變量中沒有包含ifconfig命令的路徑it
臨時修改環境變量:在shell中輸入 class
$export PATH = $PATH:/sbin
而後再輸入ifconfig命令便可,可是這只是臨時更改了shell中的PATH,若是關閉shell,則修改消失,下次還須要重複如上操做
變量
永久修改PATH變量使之包含/sbin路徑:
打開/etc/profile文件,在其中輸入export PATH=$PATH:/sbin,保存並重啓便可,這樣一來,PATH路徑永久修改爲功,之後任什麼時候候只輸入ifconfig命令便可
3. 若是ifconfig命令不存在
yum upgrade
yum install net-tools
轉載自:http://my.oschina.net/u/1428349/blog/288708