CentOS系统安装whois命令的方法
友情提示:教程内容为了更好的解决大家的问题,所以系统教程网的每一篇内容都是图文并茂的在多端设备下呈现给大家。告诉大家的是,文章内里的图片也尤为重要,在处理问题的过程中图片内容占解决问题的80%的重要性。因此,每篇文章里的图片都是能点击打开、支持放大查看(在手机端设备的情况也能如此)。
在CentOS系统中,绝大部分命令系统都有自带,但有些命令则需要额外安装,比如whois命令,那么CentOS要怎么安装whois命令呢?下面小编就给大家简单的介绍下whois命令的安装。
环境:CentOS 6.0
使用yum install whois提示找不到这个包,此时你可以使用yum search package或yum whatprovides filename来搜索相应的软件包。如:
#yum search whois
……
============= Matched: whois =============
jwhois.x86_64 : Internet whois/nicname client
perl-Net-Whois.noarch : Get and parse "whois" domain data from InterNIC
perl-Net-Whois-IP.noarch : Perl extension for looking up the whois
: information for ip addresses
jakarta-commons-net.noarch : Internet protocol suite Java library
当然您可以使用
#yum whatprovides whois //此时输出的内容很多
#yum whatprovides */bin/whois*
129 packages excluded due to repository priority protections
jwhois-4.0-18.el6.x86_64 : Internet whois/nicname client
Repo : base
Matched from:
Filename : /usr/bin/whois
有的时候使用通配符很有用。
#yum install jwhois
Installing : jwhois-4.0-18.el6.x86_64 1/1
安装后系统/usr/bin下有whois命令啦。当然您还可以下载相应的rpm包或源码包安装。
上面就是CentOS安装whois命令的方法介绍了,whois命令可用来获取域名和ip信息,安装后你就可以使用whois命令了。