I cannot find dig command on my Cygwin, nor any package name that would directly point to it. If there is a package containing it, then which one to install?
Asked
Active
Viewed 2,516 times
12
Vlastimil Burián
- 27,586
- 56
- 179
- 309
2 Answers
13
The correct package name for Cygwin at least is: bind-utils:
As you can see I've already installed it. Also to note, there was nothing to configure for dig to work right after installation.
Vlastimil Burián
- 27,586
- 56
- 179
- 309
12
To find the proper package that contains a specific file, you can always use cygcheck -p to ask the Cygwin server:
$ cygcheck -p bin/dig
Found 6 matches for bin/dig
bind-debuginfo-9.11.5-2.P4 - bind-debuginfo: Debug info for bind
bind-debuginfo-9.11.6-1 - bind-debuginfo: Debug info for bind
bind-debuginfo-9.11.9-1 - bind-debuginfo: Debug info for bind
bind-utils-9.11.5-2.P4 - bind-utils: DNS server and utilities suite
bind-utils-9.11.6-1 - bind-utils: DNS server and utilities suite
bind-utils-9.11.9-1 - bind-utils: DNS server and utilities suite
Additional information source: cygcheck man page:
-p,--package-querysearch for REGEXP in the entire cygwin.com package repository (requires internet connectivity)
Vlastimil Burián
- 27,586
- 56
- 179
- 309
matzeri
- 906
- 6
- 8
