How To Install confclerk on Kali Linux
Introduction
In this tutorial we learn how to install confclerk on Kali Linux.
What is confclerk
confclerk is:
ConfClerk is an application written in Qt, which makes conference schedules available offline. It displays the conference schedule from various views, support searches on various items (speaker, speech topic, location, etc.) and enables you to select favorite events and create your own schedule.
At the moment ConfClerk is able to import schedules in XML format created by the PentaBarf conference management system (or frab) used by e.g. FOSDEM, DebConf, FrOSCon, Grazer LinuxTage, and the CCC congresses.
ConfClerk is targeted at mobile devices but works on any system running Qt.
There are three methods to install confclerk 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 confclerk Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install confclerk using apt-get by running the following command:
sudo apt-get -y install confclerkInstall confclerk Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install confclerk using apt by running the following command:
sudo apt -y install confclerkInstall confclerk 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 confclerk using aptitude by running the following command:
sudo aptitude -y install confclerkHow To Uninstall confclerk on Kali Linux
To uninstall only the confclerk package we can use the following command:
sudo apt-get remove confclerkUninstall confclerk And Its Dependencies
To uninstall confclerk and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove confclerkRemove confclerk Configurations and Data
To remove confclerk configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge confclerkRemove confclerk configuration, data, and all of its dependencies
We can use the following command to remove confclerk configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge confclerkDependencies
confclerk have the following dependencies:
- libc6
- libgcc-s1
- libqt5core5a
- libqt5gui5
- libqt5network5
- libqt5sql5
- libqt5widgets5
- libqt5xml5
- libstdc++6
- libqt5sql5-sqlite
References
Summary
In this tutorial we learn how to install confclerk package on Kali Linux using different package management tools: apt, apt-get and aptitude.