在CentOS 7上找不到ifconfig命令

时间:2019-08-20 17:58:20  来源:igfitidea点击:

在CentOS 6.x发布之前,“ifconfing”命令用于提供有关系统上以太网设备的信息。

安装了CentOS 7(x86_64)以后,没有找到ifconfig命令:
这将给出错误信息, ifconfig command not found

要将ifconfig命令安装到我们的系统中,运行下面的命令

yum install net-tools

现在检查ifconfig命令及其在系统中的路径:

ifconfig
ifconfig -a
which ifconfig
whereis ifconfig

如何知道net-tools中包含ifconfig命令?

我们可以在使用yum命令时,指定“provides”或者“whatprovides”选项,
用于查找提供某个命令的软件包。

根据yum的使用说明:

provides or whatprovides
Is used to find out which package provides some feature or file. Just use a specific name or a file-glob-syntax wildcards to list the packages available or installed that provide that feature or file.

用于查找哪个包提供了某些特性或文件。只需使用特定的名称或文件-全局语法通配符来列出提供该特性或文件的可用或已安装的包。

在Linux中查找哪个包提供了ifconfig命令。

yum provides ifconfig