Linux(CentOS 6) - yum installコマンドでjwhoisパッケージをインストールする

CentOS 6.4をminimal install(ミニマルインストール)した場合、whoisコマンドを使用可能にするためのパッケージ(jwhois)がインストールされていない。

以下は、ミニマルインストールしたCentOS 6.4で、jwhoisパッケージをyumでインストールした時のメモとなる。

[root@test ~]# whois yahoo.co.jp
-bash: whois: コマンドが見つかりません
[root@test ~]# rpm -q whois
パッケージ whois はインストールされていません。
[root@test ~]# yum list whois   ←「yum list」コマンドで「whois」パッケージを探すが、見つからない。パッケージ名は「whois」ではないようだ。
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
base                                                     | 3.7 kB     00:00
extras                                                   | 3.5 kB     00:00
updates                                                  | 3.5 kB     00:00
Error: No matching Packages to list
[root@test ~]# yum search all whois   ←「yum search all」コマンドで「whois」の文字列を検索すると、「jwhois」というパッケージが見つかる。
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
================================ Matched: whois ================================
jwhois.x86_64 : Internet whois/nicname client
jakarta-commons-net.noarch : Internet protocol suite Java library
[root@test ~]# yum list jwhois   ←「yum list」コマンドで「jwhois」パッケージを探す。
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
Available Packages
jwhois.x86_64                          4.0-19.el6                           base
[root@test ~]# yum install jwhois   ←「yum install」コマンドで「jwhois」パッケージをインストールする。
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package jwhois.x86_64 0:4.0-19.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package          Arch             Version                 Repository      Size
================================================================================
Installing:
 jwhois           x86_64           4.0-19.el6              base           104 k

Transaction Summary
================================================================================
Install       1 Package(s)

Total download size: 104 k
Installed size: 294 k
Is this ok [y/N]: y
Downloading Packages:
jwhois-4.0-19.el6.x86_64.rpm                             | 104 kB     00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : jwhois-4.0-19.el6.x86_64                                     1/1
  Verifying  : jwhois-4.0-19.el6.x86_64                                     1/1

Installed:
  jwhois.x86_64 0:4.0-19.el6

Complete!   ←左記のメッセージが表示されたら、「jwhois」パッケージのインストールは完了。
[root@test ~]# rpm -q jwhois   ←rpmコマンドで「jwhois」パッケージがインストールされたことを確認できる。
jwhois-4.0-19.el6.x86_64
[root@test ~]# whois yahoo.co.jp   ←whoisコマンドを実行し、whois情報を得られることを確認する。
[Querying whois.jprs.jp]
[whois.jprs.jp]
[ JPRS database provides information on network administration. Its use is    ]
[ restricted to network administration purposes. For further information,     ]
[ use 'whois -h whois.jprs.jp help'. To suppress Japanese output, add'/e'     ]
[ at the end of command, e.g. 'whois -h whois.jprs.jp xxx/e'.                 ]

Domain Information:
a. [Domain Name]                YAHOO.CO.JP
g. [Organization]               Yahoo Japan Corporation
l. [Organization Type]          Corporation
m. [Administrative Contact]     SI7100JP
n. [Technical Contact]          NM5078JP
p. [Name Server]                ns01.yahoo.co.jp
p. [Name Server]                ns02.yahoo.co.jp
p. [Name Server]                ns11.yahoo.co.jp
p. [Name Server]                ns12.yahoo.co.jp
s. [Signing Key]
[State]                         Connected (2013/11/30)
[Registered Date]               2000/11/17
[Connected Date]                2000/11/17
[Last Update]                   2012/12/01 01:07:30 (JST)

前へ

アニメ『あの夏で待ってる』全12話を観終った

次へ

Linux(CentOS 6) - yum installコマンドでtracerouteパッケージをインストールする