dig
새 CentOS 설치 에서 명령을 찾을 수 없습니다 . 시도 yum install dig
했지만 패키지를 찾을 수 없다고 말합니다.
CentOS에 발굴을 어떻게 설치합니까?
답변
DIG의 도구는의 일부입니다 BIND 당신이 그들을 설치해야하므로 유틸리티. BIND 유틸리티를 설치하려면 다음을 입력하십시오.
$ yum install bind-utils
답변
특정 답변을 이미 제공했지만 설치 한 패키지를 확인하기 위해 다른 실행 파일이나 파일을 찾고 있다면 다음과 같이 활용하십시오 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.