Loading

linux没有ifconfig_ ifconfig的安装方法 解决报错-bash_ ifconfig_ command not found

解决思路:

  1. 确定是否是没有安装ifconfig,如果没有,添加上去
    首先判断一下是不是缺少了ifconfig,它是在/sbin目录下的
[root@localhost ~]# cd /sbin
[root@localhost sbin]# ls

查看一下是否有 ifconfig

没有 ifconfig 的话安装 net-tools package,以centos为例:执行sudo yum install net-tools,问题解决

  1. 确定是否是没有添加到环境变量上,如果没有,添加上去
[oracle@localhost /]$ ifconfig 
提示:“bash: ifconfig: command not found” 
切换到root用户下 
[root@localhost /]$ ifconfig 
依然提示:“bash: ifconfig: command not found” 
分析问题 
1.whereis ifconfig 看一下这个命令在哪个目录下 
2.echo $PATH 看一下该目录是否在路经下,注意linux下是完全区分大小写的,所以不要忽略这点 
3.执行命令,需要指定路径或者把目录加入PATH中 
4.于是可以这样访问 
方法一:[root@localhost sbin]$ /sbin/ifconfig 就可以出现使用了 
方法二:[root@localhost sbin]$ export PATH=$PATH:/sbin ,这样设置后,下次就可以直接访问了,免处第一种的麻烦,如: 
[root@localhost /]$ 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 
注:不光是ifconfig命令出现“bash: ifconfig: command not found”,原因非root用户的path中没有/sbin/ifconfig,其它的命令也可以出现这种情况,解决的方法是一样的。 

posted @ 2021-03-25 22:35  克豪  阅读(362)  评论(0)    收藏  举报