How To Install libjs-edit-area on Kali Linux
Introduction
In this tutorial we learn how to install libjs-edit-area on Kali Linux.
What is libjs-edit-area
libjs-edit-area is:
Edit-area is a free javascript editor for source code that is easy to integrate, has only one script include and one function call. It supports tabulation (allow to write well formated source code), has customizable real-time syntax highlighting (currently: PHP, CSS, Javascript, Python, HTML, XML, VB, C, CPP, SQL, Pascal, Basic, Brainf*ck, and probably more…), word-wrap support, search and replace (with regexp), auto-indenting new lines, line numerotation, multilanguage support (currently: Croatian, Czech, Danish, Dutch, English, Esperanto, French, German, Italian, Japanese, Macedonian, Polish, Portuguese, Russian, Slovak, Spanish, and probably more…), has the possibility to use PHP gzip compression (compress the 12 core files to one file of ~30Ko), allows multiple instances, has a full screen mode, possible plugin integration, possible save and load callback functions, possible dynamic content management, can work in the same environment than prototype and mootools’s like libraries.
There are three methods to install libjs-edit-area 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 libjs-edit-area Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libjs-edit-area using apt-get by running the following command:
sudo apt-get -y install libjs-edit-areaInstall libjs-edit-area Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libjs-edit-area using apt by running the following command:
sudo apt -y install libjs-edit-areaInstall libjs-edit-area 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 libjs-edit-area using aptitude by running the following command:
sudo aptitude -y install libjs-edit-areaHow To Uninstall libjs-edit-area on Kali Linux
To uninstall only the libjs-edit-area package we can use the following command:
sudo apt-get remove libjs-edit-areaUninstall libjs-edit-area And Its Dependencies
To uninstall libjs-edit-area and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libjs-edit-areaRemove libjs-edit-area Configurations and Data
To remove libjs-edit-area configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libjs-edit-areaRemove libjs-edit-area configuration, data, and all of its dependencies
We can use the following command to remove libjs-edit-area configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjs-edit-areaDependencies
libjs-edit-area have the following dependencies:
References
Summary
In this tutorial we learn how to install libjs-edit-area package on Kali Linux using different package management tools: apt, apt-get and aptitude.