Linux中“ifconfig”命令报错问题解决方案
首要原因:
原因二:
没有安装ifconfig等命令,运行ifconfig命令就会出错。
解决方法:
yum search ifconfig
yum install net-tools.x86_64
原因一:
命令的路径没有在PATH环境变量中。
解决方法:手动的去添加环境变量。
1、打开shu/etc/profile文件。命令:vi /etc/profile
2、按大写的G,把光标调到文件最末尾的地方。
按i进入输入模式,然后在文件的末尾添加如下的一句:export PATH=$PATH:/sbin。
3、按esc退出输入模式,:wq保存并退出文件。
4、再执行ifconfig,发现命令可以使用了。
原因二:
没有安装ifconfig等命令,运行ifconfig命令就会出错。
解决方法:
yum search ifconfig
yum install net-tools.x86_64
原因三:
没有以root用户登录运行ifconfig,因为ifconfig是在/sbin路径下的。
解决方法:切换到root用户。