美文网首页
ifconfig命令无法找到,提示bash: ifconfig:

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

作者: Jackey_song | 来源:发表于2020-02-07 15:45 被阅读0次

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

    分析问题 

    1.whereis ifconfig 看一下这个命令在哪个目录下 

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

    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 

    方法二操作实例:

    在终端或纯文本界面下,打开用户主目录下的.bash_profile文件

    #cd ~ 进入用户目录,否则找不到文件.bash_profile

    #ls -a

    #vi .bash_profile

    在PATH那行后面加上/sbin,用冒号分割,如

    PATH=$PATH:$HOME/bin:/sbin

    保存退出后,

    source .bash_profile

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

    相关文章

      网友评论

          本文标题:ifconfig命令无法找到,提示bash: ifconfig:

          本文链接:https://www.haomeiwen.com/subject/xenmxhtx.html