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

Centos7下ifconfig command not found 解决办法

时间:2016-09-27 19:12:23      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

最近重装了centos7,今日准备使用ifconfig命令的时候,结果~出现了command not found !尼玛,这是什么鬼~ so

搜了一下,有幸搜到了一份可用的文章的,亲测很有用。

1.查看ifconfig命令是否存在,查看/sbin/ifconfig是否存在

2.如果ifconfig命令你存在,查看环境变量设置:echo $PATH     如果环境变量中没有包括ifconfig命令路径。可以修改环境变量:export PATH=$PATH:/sbin

然后再输入ifconfig命令即可,但是这只是临时更改了环境变量。当你关闭shell后,则会消失。

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

打开/etc/profile文件,在其中输入export PATH=$/PATH:/sbin 

3.如果ifconfig命令不存在,那么:

yum upgrada;yum install tel-tools -y

 

此篇摘自https://my.oschina.net/u/1428349/blog/288708     

Centos7下ifconfig command not found 解决办法

标签:

原文地址:http://www.cnblogs.com/chaochao520/p/5913733.html

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