acheck command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
acheck: command not found
or when using sudo you get the following error message
sudo: acheck: command not found
Solutions to acheck: command not found
How To Fix acheck: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu acheck is provided by acheck package.
acheck is:
acheck, any text file checker, is a tool designed to help both translators and reviewers checking and fixing common localisation mistakes according to file format. Rules can be defined to add new checks.
If you install the Aspell Perl module as recommended, Aspell can be invoked to check word spelling.
To fix this problem, we can install more using the command below.
sudo apt-get -y install acheck
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install acheck.
sudo apt -y install acheck
Or if you have aptitude installed you can use the following command.
sudo aptitude install acheck
Summary
In this tutorial we learn how to fix acheck command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.