How To Install joe-jupp on Kali Linux
Introduction
In this tutorial we learn how to install joe-jupp on Kali Linux.
What is joe-jupp
joe-jupp is:
This package contains symbolic links to replace the Debian joe package using the jupp package??s JOE implementation (binaries and manpages). It also contains the appropriate conffiles and, in contrast to Debian??s joe flavour, supports SELinux context copying (on Debian systems with the Linux kernel), and has many bugs fixed and makes some of jupp??s new features available to the joe, jstar, jmacs, jpico and rjoe flavours.
There are three methods to install joe-jupp 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 joe-jupp Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install joe-jupp using apt-get by running the following command:
sudo apt-get -y install joe-juppInstall joe-jupp Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install joe-jupp using apt by running the following command:
sudo apt -y install joe-juppInstall joe-jupp 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 joe-jupp using aptitude by running the following command:
sudo aptitude -y install joe-juppHow To Uninstall joe-jupp on Kali Linux
To uninstall only the joe-jupp package we can use the following command:
sudo apt-get remove joe-juppUninstall joe-jupp And Its Dependencies
To uninstall joe-jupp and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove joe-juppRemove joe-jupp Configurations and Data
To remove joe-jupp configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge joe-juppRemove joe-jupp configuration, data, and all of its dependencies
We can use the following command to remove joe-jupp configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge joe-juppDependencies
joe-jupp have the following dependencies:
References
Summary
In this tutorial we learn how to install joe-jupp package on Kali Linux using different package management tools: apt, apt-get and aptitude.