欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

10秒解决 ifconfig command not found

程序员文章站 2022-05-10 14:53:07
...

查询命令是否存在

  1. 切换到 /sbin目录下,查找有没有ifconfig命令。
cd /sbin
find ifconfig

存在

  1. 检查环境变量设置
#echo $PATH
  1. 修改profile文件
vim /etc/profile
  1. 文件新增sbin目录
export PATH=$PATH:/sbin

不存在

本人属于这种情况。

  1. 查询网卡ip,并启动网络(!非常重要,先保证连上网)
ip addr
ifup ens33(网卡名称)

10秒解决 ifconfig command not found

  1. yum系统包更新
yum upgrade
  1. 安装net-tools
yum install net-tools

最终,简单测试一下:
10秒解决 ifconfig command not found