Linux下查找命令对应的RPM安装包

在使用LINUX难免遇到一些命令无法使用,例如:
[root@localhost ~]#
ifconfig
-bash: ifconfig: command not found

在命令已有安装的server中执行以下,可查出命令对应的RPM安装包
[root@vswhInd4DBt ~]# whereis ifconfig
ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz
[root@vswhInd4DBt ~]# rpm -qf /sbin/ifconfig
net-tools-1.60-110.el6_2.x86_64

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/25583515/viewspace-2146976/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/25583515/viewspace-2146976/

你可能感兴趣的:(Linux下查找命令对应的RPM安装包)