How To Install udiskie on Kali Linux
Introduction
In this tutorial we learn how to install udiskie on Kali Linux.
What is udiskie
udiskie is:
udiskie is a front-end for UDisks written in Python. Its main purpose is automatically mounting removable media, such as CDs or flash drives. It has optional mount notifications, a GTK+ tray icon and user level CLIs for manual mount and unmount operations. The media will be mounted in a new directory under /media or /run/media/USER/, using the device name if possible.
This package is needed to support automounting removable media when nautilus is not available to control UDisks2.
There are three methods to install udiskie 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 udiskie Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install udiskie using apt-get by running the following command:
sudo apt-get -y install udiskieInstall udiskie Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install udiskie using apt by running the following command:
sudo apt -y install udiskieInstall udiskie 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 udiskie using aptitude by running the following command:
sudo aptitude -y install udiskieHow To Uninstall udiskie on Kali Linux
To uninstall only the udiskie package we can use the following command:
sudo apt-get remove udiskieUninstall udiskie And Its Dependencies
To uninstall udiskie and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove udiskieRemove udiskie Configurations and Data
To remove udiskie configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge udiskieRemove udiskie configuration, data, and all of its dependencies
We can use the following command to remove udiskie configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge udiskieDependencies
udiskie have the following dependencies:
References
Summary
In this tutorial we learn how to install udiskie package on Kali Linux using different package management tools: apt, apt-get and aptitude.