ledit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ledit: command not found
or when using sudo you get the following error message
sudo: ledit: command not found
Solutions to ledit: command not found
How To Fix ledit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ledit is provided by ledit package.
ledit is:
Ledit is a line editor, allowing to use control commands like in emacs or in shells (bash, tcsh). To be used with interactive commands. It is written in OCaml and Camlp4 and uses the library unix.cma.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ledit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ledit.
sudo apt -y install ledit
Or if you have aptitude installed you can use the following command.
sudo aptitude install ledit
Summary
In this tutorial we learn how to fix ledit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.