How To Install mle on Kali Linux
Introduction
In this tutorial we learn how to install mle on Kali Linux.
What is mle
mle is:
mle is a small, flexible, terminal-based text editor written in C. Notable features include: full Unicode support, syntax highlighting, scriptable rc file, macros, search and replace (PCRE), window splitting, multiple cursors, and integration with various shell commands.
There are three methods to install mle on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install mle Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install mle using apt-get by running the following command:
sudo apt-get -y install mleInstall mle Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install mle using apt by running the following command:
sudo apt -y install mleInstall mle Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install mle using aptitude by running the following command:
sudo aptitude -y install mleHow To Uninstall mle on Kali Linux
To uninstall only the mle package we can use the following command:
sudo apt-get remove mleUninstall mle And Its Dependencies
To uninstall mle and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove mleRemove mle Configurations and Data
To remove mle configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge mleRemove mle configuration, data, and all of its dependencies
We can use the following command to remove mle configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge mleDependencies
mle have the following dependencies:
References
Summary
In this tutorial we learn how to install mle package on Kali Linux using different package management tools: apt, apt-get and aptitude.