Centos7下ifconfig command not found 解决办法

时间:2021-08-22 01:46:19

最近重装了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