proclint command not found

In this troubleshooting guide we learn how to fix proclint command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

proclint: command not found

or when using sudo you get the following error message

sudo: proclint: command not found

Solutions to proclint: command not found

How To Fix proclint: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu proclint is provided by procmail-lib package.

procmail-lib is:

Procmail Module Library is a collection of many plug-in modules for the Procmail mail processing utility. The modules allow common tasks like parsing dates, times, MIME, and email addresses, forwarding mail, dealing with POP3, spam shielding, running email cron jobs, handling daemon messages, and more.

Includes also all of Alan Stebben’s recipes (the pioneer of Procmail).

To fix this problem, we can install more using the command below.

sudo apt-get -y install procmail-lib

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install procmail-lib.

sudo apt -y install procmail-lib

Or if you have aptitude installed you can use the following command.

sudo aptitude install procmail-lib

Summary

In this tutorial we learn how to fix proclint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.