在CentOS系統(tǒng)中,絕大部分命令系統(tǒng)都有自帶,但有些命令則需要額外安裝,比如whois命令,那么CentOS要怎么安裝whois命令呢?下面小編就給大家簡單的介紹下whois命令的安裝。
環(huán)境:CentOS 6.0
使用yum install whois提示找不到這個包,此時你可以使用yum search package或yum whatprovides filename來搜索相應(yīng)的軟件包。如:
#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
當(dāng)然您可以使用
#yum whatprovides whois //此時輸出的內(nèi)容很多
#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
安裝后系統(tǒng)/usr/bin下有whois命令啦。當(dāng)然您還可以下載相應(yīng)的rpm包或源碼包安裝。
上面就是CentOS安裝whois命令的方法介紹了,whois命令可用來獲取域名和ip信息,安裝后你就可以使用whois命令了。