码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7 下 ifconfig command not found 解决办法

时间:2014-07-22 08:16:37      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   文件   re   c   

今天尝鲜用VMWare安装了CentOS7,选择了最小安装包模式,安装完毕之后想查看一下本机的ip地址,发现报错

# ifcon
-bash: ifconfig: command not found

谷歌了一下,整理了一下解决思路

  1.  查看ifconfig命令是否存在

  2.  查看 /sbin/ifconfig是否存在

  3. 如果ifconfig命令存在,查看环境变量设置    

#echo $PATH

       如果环境变量中没有包含ifconfig命令的路径

        临时修改环境变量:在shell中输入       

$export PATH = $PATH:/sbin

       然后再输入ifconfig命令即可,但是这只是临时更改了shell中的PATH,如果关闭shell,则修改消失,下次还需要重复如上操作

        永久修改PATH变量使之包含/sbin路径:

        打开/etc/profile文件,在其中输入export PATH=$PATH:/sbin,保存并重启X即可,这样一来,PATH路径永久修改成功,以后任何时候只需书序ifconfig命令即可

  3. 如果ifconfig命令不存在

yum upgrade
yum install net-tools


CentOS 7 下 ifconfig command not found 解决办法,布布扣,bubuko.com

CentOS 7 下 ifconfig command not found 解决办法

标签:style   color   os   文件   re   c   

原文地址:http://my.oschina.net/u/1428349/blog/288708

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!