RHEL系Linuxにnslookupやdigコマンドをインストールする方法
目次
スポンサードリンク
RHELやCentOSなど、RHEL系統のLinuxには、DNS関連の情報を確認するための nslookup コマンドや dig コマンドがインストールされていないことがあります。
私の手元の環境では、nslookupやdigコマンドを実行しても「 command not found」と表示されます。試したのは以下のバージョンです。
[root@hostname tmp]# cat /etc/redhat-release
Red Hat Enterprise Linux release 8.10 (Ootpa)
[root@hostname tmp]# uname -a
Linux hostname 4.18.0-553.16.1.el8_10.x86_64 #1 SMP Thu Aug 1 04:16:12 EDT 2024 x86_64 x86_64 x86_64 GNU/Linux
[root@hostname tmp]# nslookup uchy.me
-bash: nslookup: command not found
[root@hostname tmp]# dig uchy.me
-bash: dig: command not found
dnf コマンドでnslookupやdigをインストールしようとしましたが、コマンドの名称をそのまま指定してもパッケージとしては存在せず、インストールできない状態でした。
[root@hostname tmp]# dnf install nslookup
Last metadata expiration check: 1:39:23 ago on Fri 13 Sep 2024 09:06:14 AM JST.
No match for argument: nslookup
Error: Unable to find a match: nslookup
[root@hostname tmp]# dnf install dig
Last metadata expiration check: 1:40:05 ago on Fri 13 Sep 2024 09:06:14 AM JST.
No match for argument: dig
Error: Unable to find a match: dig
解決方法
bind-utilsをインストールすることで、nslookup や dig コマンドが使えるようになります。 bind-utilsとは、DNSサーバーソフトウェアであるBIND(Berkeley Internet Name Domain)を管理するためのユーティリティの集まりです。
bind-utilsは以下コマンドでインストールすることができます。
dnf install bind-utils
インストール後、nslookup や dig コマンドが使えるようになりました。
[root@hostname tmp]# nslookup -version
nslookup 9.11.36-RedHat-9.11.36-16.el8_10.2
[root@hostname tmp]# dig -v
DiG 9.11.36-RedHat-9.11.36-16.el8_10.2
Linuxコマンドについて学べるおすすめ書籍
Linuxコマンドの知識は、プログラマにとって長く役立つ知識です。 私はこちらの書籍で一通り知識を抑えました。基本から丁寧に解説されています。
Linux教科書 図解でパッとわかる LPIC/LinuC
はじめてLPICを受ける方向け、手を動かしながらLinuxについて学びたい方におすすめ。30日間の無料体験もできる『Kindle Unlimited』でも読むことができます。
Linuxコマンドについて徹底的に学べるUdemy講座
もう絶対に忘れない Linux コマンド【Linux 100本ノック+名前の由来+丁寧な解説で、長期記憶に焼き付けろ!】
Search
Recent Posts
- OpenSSHのエラー「bad ownership or modes for chroot directory component」の原因と解消方法
- Apacheの起動状態をチェックして停止してる場合にApacheを起動するシェルスクリプト
- Amazon LinuxのOSバージョンを調べる方法|/etc/redhat-release の代替ファイル
- MYSQLでダンプファイルを取得する際に発生したエラー「Couldn't execute 'SELECT BINLOG_GTID_POS('', '0')': You are not using binary logging (1381)」の原因と対処方法
- RHEL系Linuxでリポジトリを一覧表示するコマンド(dnf repolist)