dlint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dlint: command not found
or when using sudo you get the following error message
sudo: dlint: command not found
Solutions to dlint: command not found
How To Fix dlint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dlint is provided by dlint package.
dlint is:
This program analyzes any DNS zone you specify, and reports any problems it finds by displaying errors and warnings. Then it descends recursively to examine all zones below the given one (this can be disabled with a command- line option).
You don’t have to feed any BIND conffiles to Dlint. Dlint uses nameserver calls to gather information.
Designed for Unix, dlint is written in Bourne Shell and Perl.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dlint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dlint.
sudo apt -y install dlint
Or if you have aptitude installed you can use the following command.
sudo aptitude install dlint
Summary
In this tutorial we learn how to fix dlint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.