同事扔过来一个rhel7.2的系统,登录后发现没有安装ifconfig命令:

# ifconfig 
-bash: ifconfig: command not found

  

先看看环境变量:

# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin

 

在查看ifconfig命令是否存在:结果没有发现命令

# ls  /sbin/ifconfig

 

安装ifconfig命令:

# yum upgrade
# yum install net-tools

OK!

相关文章:

  • 2021-12-01
  • 2021-08-14
  • 2021-08-17
  • 2022-12-23
  • 2021-05-04
  • 2021-10-07
  • 2021-06-11
  • 2021-11-22
猜你喜欢
  • 2021-12-23
  • 2021-04-29
  • 2021-04-15
  • 2021-05-15
  • 2021-04-25
相关资源
相似解决方案