How To Install diodon on Kali Linux
Introduction
In this tutorial we learn how to install diodon on Kali Linux.
What is diodon
diodon is:
Diodon is a lightweight clipboard manager for Linux written in Vala which “aims to be the best integrated clipboard manager for the Gnome/Unity desktop”.
Diodon features include Ubuntu indicator, clipboard sync (primary selection and Ctrl+C / Ctrl+V clipboard) and a zeitgeist integration for an infinite clipboard history.
There are three methods to install diodon 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 diodon Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install diodon using apt-get by running the following command:
sudo apt-get -y install diodonInstall diodon Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install diodon using apt by running the following command:
sudo apt -y install diodonInstall diodon 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 diodon using aptitude by running the following command:
sudo aptitude -y install diodonHow To Uninstall diodon on Kali Linux
To uninstall only the diodon package we can use the following command:
sudo apt-get remove diodonUninstall diodon And Its Dependencies
To uninstall diodon and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove diodonRemove diodon Configurations and Data
To remove diodon configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge diodonRemove diodon configuration, data, and all of its dependencies
We can use the following command to remove diodon configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge diodonDependencies
diodon have the following dependencies:
- libdiodon0
- zeitgeist-core
- dconf-gsettings-backend
- libayatana-appindicator3-1
- libc6
- libglib2.0-0
- libgtk-3-0
- libpeas-1.0-0
References
Summary
In this tutorial we learn how to install diodon package on Kali Linux using different package management tools: apt, apt-get and aptitude.