How To Install confclerk on Ubuntu 20.04

In this tutorial we learn how to install confclerk on Ubuntu 20.04. confclerk is offline conference schedule application

Introduction

In this tutorial we learn how to install confclerk on Ubuntu 20.04.

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 Ubuntu 20.04. 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 Ubuntu. 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 Ubuntu 20.04

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 Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove confclerk

Remove confclerk Configurations and Data

To remove confclerk configuration and data from Ubuntu 20.04 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

References

Summary

In this tutorial we learn how to install confclerk package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.