How To Install setools-gui on Kali Linux
Introduction
In this tutorial we learn how to install setools-gui on Kali Linux.
What is setools-gui
setools-gui is:
Security-enhanced Linux is a patch of the Linux kernel and a number of utilities with enhanced security functionality designed to add mandatory access controls to Linux. These are Tools for analysing security policy on SELinux systems.
This package contains the following GUI tool:
- apol: graphical SELinux policy analysis tool
There are three methods to install setools-gui 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 setools-gui Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install setools-gui using apt-get by running the following command:
sudo apt-get -y install setools-guiInstall setools-gui Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install setools-gui using apt by running the following command:
sudo apt -y install setools-guiInstall setools-gui 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 setools-gui using aptitude by running the following command:
sudo aptitude -y install setools-guiHow To Uninstall setools-gui on Kali Linux
To uninstall only the setools-gui package we can use the following command:
sudo apt-get remove setools-guiUninstall setools-gui And Its Dependencies
To uninstall setools-gui and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove setools-guiRemove setools-gui Configurations and Data
To remove setools-gui configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge setools-guiRemove setools-gui configuration, data, and all of its dependencies
We can use the following command to remove setools-gui configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge setools-guiDependencies
setools-gui have the following dependencies:
References
Summary
In this tutorial we learn how to install setools-gui package on Kali Linux using different package management tools: apt, apt-get and aptitude.