web-dev-qa-db-ja.com

CentOSにDigをインストールする方法は?

新しいCentOSインストールでDigコマンドが見つかりません。私はもう試した dnf install Digしかし、パッケージが見つからないと言っています。

CentOSにDigをインストールするにはどうすればよいですか?

94

Digツールは [〜#〜] bind [〜#〜] ユーティリティの一部なので、インストールする必要がありますそれら。 BINDユーティリティをインストールするには、次のように入力します。

$ dnf install bind-utils
139

具体的な回答はすでに提供されていますが、他の実行可能ファイルやファイルを探して、それらがどのパッケージとともにインストールされているかを確認する場合は、yum whatprovides *relative/path/to/file*を使用します。次に例を示します。

$ yum whatprovides '*bin/Dig'

32:bind-utils-9.8.2-0.17.rc1.el6_4.6.x86_64 : Utilities for querying DNS name servers
Repo        : base
Matched from:
Filename    : /usr/bin/Dig
...

man yumから:

provides or whatprovides
    Is  used to find out which package provides some feature or file. Just
    use a specific name or a file-glob-syntax wildcards to list the  pack-
    ages available or installed that provide that feature or file.
62
Tony Cesaro

古いシステムでは、代わりにyumを使用する必要があります。

$ yum install bind-utils