dig
CentOS를 새로 설치하면 이 명령을 찾을 수 없습니다. 시도해 보았 dnf install dig
으나 패키지를 찾을 수 없다고 나옵니다.
CentOS에 dig를 설치하는 방법은 무엇입니까?
답변1
이것파기도구는 다음의 일부입니다.제본유틸리티이므로 설치해야 합니다. BIND 유틸리티를 설치하려면 다음을 입력하십시오.
$ dnf install bind-utils
답변2
구체적인 답변을 제공했지만, 어떤 패키지가 설치되어 있는지 확인하기 위해 다른 실행 파일이나 파일을 찾고 있다면 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.
답변3
이전 시스템에서는 다음을 사용해야 합니다 yum
.
$ yum install bind-utils