cil command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cil: command not found
or when using sudo you get the following error message
sudo: cil: command not found
Solutions to cil: command not found
How To Fix cil: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cil is provided by cil package.
cil is:
‘cil’ allows easy command-line creation of an issue tracker. It saves each issue locally and in plain text. Commands are given such that these issues can be added, edited and listed easily.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cil
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cil.
sudo apt -y install cil
Or if you have aptitude installed you can use the following command.
sudo aptitude install cil
Summary
In this tutorial we learn how to fix cil command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.