ifconfig命令无法找到,提示bash: ifconfig: command not found

Posted 不使疯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ifconfig命令无法找到,提示bash: ifconfig: command not found相关的知识,希望对你有一定的参考价值。

问题就是题目那样,具体解决方法截图如下:

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

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

3.执行命令,需要指定路径或者把目录加入PATH中 
4.于是可以这样访问 
方法一:[[email protected] sbin]$ /sbin/ifconfig 就可以出现使用了 
方法二:[[email protected] sbin]$ export PATH=$PATH:/sbin ,这样设置后,下次就可以直接访问了,免处第一种的麻烦,如: 
[[email protected] /]$ 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 

方法二操作实例:

技术分享

在终端或纯文本界面下,打开用户主目录下的.bash_profile文件
#cd ~ 进入用户目录,否则找不到文件.bash_profile
#ls -a
#vi .bash_profile
在PATH那行后面加上/sbin,用冒号分割,如
PATH=$PATH:$HOME/bin:/sbin
保存退出后,

source .bash_profile

或重新注销、登录,就可以生效了。

以上是关于ifconfig命令无法找到,提示bash: ifconfig: command not found的主要内容,如果未能解决你的问题,请参考以下文章

sudo cd提示命令无法找到或无任何提示却不执行的情况

CentOS7中提示bash:ll: 未找到的命令...

无法在 Windows 命令提示符或 git bash 中运行 iex

-bash: unzip: 未找到命令

MySQL 命令行 '-bash 命令未找到'

Windows端git-bash无法找到open命令,bash: open: command not found