How To Install confclerk on Debian 10
Introduction
In this tutorial we learn how to install confclerk
on Debian 10.
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 Debian 10. 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 update
After updating apt database, We can install confclerk
using apt-get
by running the following command:
sudo apt-get -y install confclerk
Install confclerk Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install confclerk
using apt
by running the following command:
sudo apt -y install confclerk
Install confclerk Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install confclerk
using aptitude
by running the following command:
sudo aptitude -y install confclerk
How To Uninstall confclerk on Debian 10
To uninstall only the confclerk
package we can use the following command:
sudo apt-get remove confclerk
Uninstall confclerk And Its Dependencies
To uninstall confclerk
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove confclerk
Remove confclerk Configurations and Data
To remove confclerk
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge confclerk
Remove 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 confclerk
Dependencies
confclerk have the following dependencies:
References
Summary
In this tutorial we learn how to install confclerk
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.