問題:在centos中查詢IP地址時,輸入ifconfig命令報錯:「ifconfig: command not found」
緣由:ifconfig命令所在路徑/sbin未包含在系統環境變量PATH中web
解決方法:
1. 直接輸入:/sbin/ifconfig
2. 臨時修改環境變量:在shell中輸入
$export PATH = $PATH:/sbin
而後再輸入ifconfig命令便可,可是這只是臨時更改了shell中的PATH,若是關閉shell,則修改消失,下次還須要重複如上操做
3.永久修改PATH變量使之包含/sbin路徑:
打開/etc/profile文件,在其中輸入export PATH=$PATH:/sbin,保存並重啓X便可,這樣一來,PATH路徑永久修改爲功,之後任什麼時候候只需書序ifconfig命令便可shell
摘自:http://blog.csdn.net/aigoleague/article/details/7996151centos