10秒解决 ifconfig command not found

文章目录

  • 查询命令是否存在
  • 存在
  • 不存在

查询命令是否存在

  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张图片

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

最终,简单测试一下:
10秒解决 ifconfig command not found_第2张图片

你可能感兴趣的:(#,Linux)