Install dig on Ubuntu 14.04

dig

How can I install "dig" on Ubuntu 14.04 minimal ?

I tried:

apt-get install dig

It didn't work. Seems its in some different package included but I don't know which one.

Best Answer

dig is contained in dnsutils package. Try this way:

apt-get install dnsutils
Related Question