calife command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
calife: command not found
or when using sudo you get the following error message
sudo: calife: command not found
Solutions to calife: command not found
How To Fix calife: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu calife is provided by calife package.
calife is:
Calife is a lightweight alternative to Sudo. It allows selected users to obtain a shell with the identity of root, or another user, after entering their own password. This permits the system administrator to grant root privileges without sharing the root password.
To fix this problem, we can install more using the command below.
sudo apt-get -y install calife
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install calife.
sudo apt -y install calife
Or if you have aptitude installed you can use the following command.
sudo aptitude install calife
Summary
In this tutorial we learn how to fix calife command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.