elidad command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
elidad: command not found
or when using sudo you get the following error message
sudo: elidad: command not found
Solutions to elidad: command not found
How To Fix elidad: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu elidad is provided by elida package.
elida is:
elida accepts the URL of a .dsc file from the subject of a email message and downloads the rest of the files of the corresponding Debian source package. If there is a previous version in Debian, a diff between the old and new source packages is reported. It then runs pbuilder, piuparts, and lintian. The reports are compressed and emailed back to the user.
To fix this problem, we can install more using the command below.
sudo apt-get -y install elida
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install elida.
sudo apt -y install elida
Or if you have aptitude installed you can use the following command.
sudo aptitude install elida
Summary
In this tutorial we learn how to fix elidad command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.