首页 > 代码库 > centos7 最小化安装没有ifconfig 命令

centos7 最小化安装没有ifconfig 命令

centos6和7 还是有些变化的,最小化安装后我们经常用的查看ip信息命令:ifconfig  就没有此命令!


查看ip:

ip addr

技术分享


使用ifconfig命令:

这里“provides”或者“whatprovides”开关用于找出某个包提供了某些功能或文件 
yum whatprovides ifconfig
yum provides ifconfig

技术分享


安装net-tools 包:

yum -y install net-tools

我这里安装过了,所以yum安装提示此包已经存在了!

技术分享

本文出自 “jinchuang” 博客,请务必保留此出处http://jinchuang.blog.51cto.com/8690689/1947057

centos7 最小化安装没有ifconfig 命令