在CentOS 7最小化安装使用ifconfig
众所周知,“ifconfig”命令用于配置GNU/Linux系统的网络接口。它显示网络接口卡的详细信息,包括IP地址,MAC地址,以及网络接口卡状态之类。但是该命令已经过时了,按照《linux就该这么学》的教程,在最小化版本的RHEL 7以及它的克隆版本CentOS 7,Oracle Linux 7和Scientific Linux 7中也找不到该命令。那么在Centos7&RHEL7版系统中怎么使用命令查看IP信息呢?如何使用ifconfig来查看IP信息呢?
CentOS 7最小化系统,使用“ip addr”和“ip link”命令来查找网卡详情。
- 01
要知道统计数据,可以使用“ip -s link”。
在CentOS 7最小化服务器版本中启用“ifconfig”命令
- 01
如果你不知道在哪里可以找到ifconfig命令,请按照以下简单的步骤来找到它。 首先,让我们找出哪个包提供了ifconfig命令: [root@linuxprobe ~]# yum provides ifconfig Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.aol.in * extras: centos.aol.in * updates: centos.aol.in net-tools-2.0-0.17.20131004git.el7.x86_64 : Basic networking tools Repo : @base Matched from: Filename : /usr/sbin/ifconfig
- 02
或者你也可以使用以下命令 这里,“provides”或者“whatprovides”开关用于找出某个包提供了某些功能或文件。 net-tools包提供了ifconfig命令。因此,安装net-tools包也可以使用ifconfig命令。
- 03
安装net-tools包