bash: ifconfig: command not found 解决办法

来源:互联网 发布:树莓派zerow ubuntu 编辑:程序博客网 时间:2024/06/05 23:43

bash: ifconfig: command not found 解决办法
原本使用ifconfig 可以使用,今天是怎么了,可能安装软件修改了,百度~~
[oracle@localhost /]$ ifconfig
提示:“bash: ifconfig: command not found”

于是我切换到root用户下
[root@localhost /]$ ifconfig
依然提示:“bash: ifconfig: command not found”

分析问题
1.whereis ifconfig 看一下这个命令在哪个目录下

2.echo $PATH 看一下该目录是否在路经下,注意lunux下是完全区分大小写的,所以不要忽略这点

3.执行命令,需要指定路径或者把目录加入PATH中

4.于是可以这样访问
方法一:[root@localhost sbin]/sbin/ifconfig使[root@localhostsbin] 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
,其它的命令也可以出现这种情况,解决的方法是一样的。