comptext command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
comptext: command not found
or when using sudo you get the following error message
sudo: comptext: command not found
Solutions to comptext: command not found
How To Fix comptext: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu comptext is provided by comptext package.
comptext is:
Comptext is used to compare two text streams. It’s comparison function uses a linear-programming technique. It computes total number of errors, the character error rate (CER) and the bit error rate (BER).
To fix this problem, we can install more using the command below.
sudo apt-get -y install comptext
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install comptext.
sudo apt -y install comptext
Or if you have aptitude installed you can use the following command.
sudo aptitude install comptext
Summary
In this tutorial we learn how to fix comptext command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.