剛才遇到那么尷尬的一個情況,輸入啥命令都沒找到。連ifconfig都不放過。
后分析極可能是以下兩種緣故:
1.缺少安裝包
[root@Tzhost-170802-FCF0 /]# yum search ifconfig #搜索關於ifconfg的數據
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
============================================= Matched: ifconfig ==============================================
net-tools.x86_64 : Basic networking tools #net-tools.x86_64為搜索結果
[root@Tzhost-170802-FCF0 /]# yum install net-tools.x86_64 #安裝
2.缺少變量
缺少環境變量的情況
1.查看環境變量:echo $PATH
2.查看所有包含bin或者sbin的文件夾:find / -type d -name *bin
3.將2查看結果中沒有包含在path中的目錄添加到環境變量中:即修改/etc/profile文件,命令是gedit ect/profile 然后再這個文件的最后加上這樣一句:export PATH=/usr/sbin:/bin:/usr/local/sbin:/usr/local/share/bin:$PATH,說明:每個目錄以:隔開,這些都是之前未被包含進去的,要根據自己的情況來。
4.重啟生效哦
