Answers:
您可以通过打开终端并输入来安装它
sudo apt-get install dnsutils
或通过单击以下波纹管,通过Ubuntu软件中心:
供以后参考,我通过对apt-cache进行快速搜索发现了这一点:
apt-cache search dns dig
然后用验证aptitude
。
sudo apt-get install dnsutils
要找出文件所在的软件包,您可以执行以下操作
sudo apt-cache search dig
有时这行得通,但是在这种情况下,它是没有用的。您可以在此处使用“搜索包内容”搜索表来搜索特定文件所在的包:
apt-cache search
更加有用。在这种情况下,dns
and dig
关键字的组合返回的列表要小得多(大约十二个程序包),而不是它们本身的返回值(几百个,对于dns
几乎一千个dig
)。
ubuntu-standard
直接取决于dnsutils
它包含dig
,nslookup
和nsupdate
公用事业。您的系统还可以吗?你可以试试sudo apt-get install ubuntu-standard
吗?