clit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
clit: command not found
or when using sudo you get the following error message
sudo: clit: command not found
Solutions to clit: command not found
How To Fix clit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu clit is provided by convlit package.
convlit is:
This program will extract “DRM1” format .LIT files into their original XML/HTML. If you have the appropriate “keys.txt” file with your private EBook keys, you can also convert “DRM5” files to “DRM1”.
To fix this problem, we can install more using the command below.
sudo apt-get -y install convlit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install convlit.
sudo apt -y install convlit
Or if you have aptitude installed you can use the following command.
sudo aptitude install convlit
Summary
In this tutorial we learn how to fix clit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.