Debian Quirks
Just a tip for anyone else Googling this, if you’re trying to install the DNS utility dig on Debian the obvious doesn’t work:
# dig
bash: dig: command not found
# apt-get install dig
Reading Package Lists... Done
Building Dependency Tree... Done
E: Couldn't find package dig
This is what you need:
# apt-get install dnsutils


