nslint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nslint: command not found
or when using sudo you get the following error message
sudo: nslint: command not found
Solutions to nslint: command not found
How To Fix nslint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nslint is provided by nslint package.
nslint is:
Nslint reads the nameserver configuration files and performs a number of consistency checks on the DNS records.
Nslint understands both ancient style named.boot and BIND 8’s named.conf files (which are also used by BIND 9).
To fix this problem, we can install more using the command below.
sudo apt-get -y install nslint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nslint.
sudo apt -y install nslint
Or if you have aptitude installed you can use the following command.
sudo aptitude install nslint
Summary
In this tutorial we learn how to fix nslint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.