How To Install kali-undercover on Kali Linux
Introduction
In this tutorial we learn how to install kali-undercover
on Kali Linux.
What is kali-undercover
kali-undercover is:
Run ??kali-undercover?? and you will instantly switch your Xfce desktop into a Windows 10 desktop that will no longer draw attention to your activities.
Run it a second time to escape the cover mode and get back your original desktop settings.
There are three methods to install kali-undercover
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 kali-undercover Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install kali-undercover
using apt-get
by running the following command:
sudo apt-get -y install kali-undercover
Install kali-undercover Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install kali-undercover
using apt
by running the following command:
sudo apt -y install kali-undercover
Install kali-undercover 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 update
After updating apt database, We can install kali-undercover
using aptitude
by running the following command:
sudo aptitude -y install kali-undercover
How To Uninstall kali-undercover on Kali Linux
To uninstall only the kali-undercover
package we can use the following command:
sudo apt-get remove kali-undercover
Uninstall kali-undercover And Its Dependencies
To uninstall kali-undercover
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove kali-undercover
Remove kali-undercover Configurations and Data
To remove kali-undercover
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge kali-undercover
Remove kali-undercover configuration, data, and all of its dependencies
We can use the following command to remove kali-undercover
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge kali-undercover
Dependencies
kali-undercover have the following dependencies:
- fonts-liberation
- gir1.2-glib-2.0
- libnotify-bin
- procps
- psmisc
- xfce4
- xfce4-power-manager-plugins
- xfce4-pulseaudio-plugin
- xfce4-whiskermenu-plugin
- xfce4-datetime-plugin
- xdotool
- mousepad
- python3
References
Summary
In this tutorial we learn how to install kali-undercover
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.