CentOS サーバーに nslookup をインストールできません。

CentOS サーバーに nslookup をインストールできません。

nslookupCentOS 7.2にインストールできません。

yum install nslookup
[root@localhost network-scripts]# yum install -y nslookup
added plugin:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.sunnyvision.com
 * epel: my.mirrors.thegigabit.com
 * extras: mirror.sunnyvision.com
 * updates: mirrors.icidc.com
No available nslookup

答え1

nslookupbind-utilsパッケージに含まれています。

インストールするには、次のコマンドを使用する必要があります。

# yum install bind-utils

答え2

以下を使用して、どのパッケージがそれを提供しているかを確認できますyum whatprovides nslookup

~$ yum whatprovides nslookup
Loaded plugins: fastestmirror
Determining fastest mirrors
.
.
32:bind-utils-9.11.4-9.P2.el7.x86_64 : Utilities for querying DNS name servers
Repo        : base
Matched from:
Filename    : /usr/bin/nslookup



32:bind-utils-9.9.4-74.el7_6.2.x86_64 : Utilities for querying DNS name servers
Repo        : @updates
Matched from:
Filename    : /usr/bin/nslookup

その後、yumを使用してパッケージをインストールできますyum install bind-utils

関連情報