在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命令了。