linklint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
linklint: command not found
or when using sudo you get the following error message
sudo: linklint: command not found
Solutions to linklint: command not found
How To Fix linklint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu linklint is provided by linklint package.
linklint is:
Linklint is a full featured Perl program for checking HTML links: * both local and remote site checking * cross referenced and fully hyperlinked output reports * the ability to check password protected areas * support for all standard server-side image maps * reports of orphan files, and files with mismatching case * a report of which URLs have changed since last checked * support of proxy servers for remote URL checking * come with full documentation.
Please visit http://www.linklint.org/ for more information.
To fix this problem, we can install more using the command below.
sudo apt-get -y install linklint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install linklint.
sudo apt -y install linklint
Or if you have aptitude installed you can use the following command.
sudo aptitude install linklint
Summary
In this tutorial we learn how to fix linklint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.