How To Install conky-all-dbg on Ubuntu 20.04

In this tutorial we learn how to install conky-all-dbg on Ubuntu 20.04. conky-all-dbg is highly configurable system monitor (all features enabled - debug)

Introduction

In this tutorial we learn how to install conky-all-dbg on Ubuntu 20.04.

What is conky-all-dbg

conky-all-dbg is:

Conky is a system monitor that can display just about anything, either on your root desktop or in its own window. Conky has many built-in objects, as well as the ability to execute external programs or scripts (either external or through built-in Lua support).

This is a full conky with most compile options enabled:

X11, XDamage, XDBE, Xft, MPD, MOC, math, hddtemp, portmon, RSS, Weather, wireless, IBM, nvidia, eve-online, Imlib2, apcupsd, I/O stats, argb, Lua and the cairo and imlib2 Lua bindings, Audacious, XMMS2, and PulseAudio.

This package contains debugging symbols only. Build-Ids: 21994b64e513cd03b83e5d9ce04d631438fad29b 3b6e1b271469cfec8e20b9ee684c7b608adf0b5f 3f6a7abca0c6ddf72d20a45d7bb4ce5e648c4a3a 81fc43669702fb0a722f99ae4a0b5740cd8e61a3 d6dd93af08638f67c45979f4d1807990ee478b14

There are three methods to install conky-all-dbg 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 conky-all-dbg Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install conky-all-dbg using apt-get by running the following command:

sudo apt-get -y install conky-all-dbg

Install conky-all-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install conky-all-dbg using apt by running the following command:

sudo apt -y install conky-all-dbg

Install conky-all-dbg 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 conky-all-dbg using aptitude by running the following command:

sudo aptitude -y install conky-all-dbg

How To Uninstall conky-all-dbg on Ubuntu 20.04

To uninstall only the conky-all-dbg package we can use the following command:

sudo apt-get remove conky-all-dbg

Uninstall conky-all-dbg And Its Dependencies

To uninstall conky-all-dbg and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove conky-all-dbg

Remove conky-all-dbg Configurations and Data

To remove conky-all-dbg configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge conky-all-dbg

Remove conky-all-dbg configuration, data, and all of its dependencies

We can use the following command to remove conky-all-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge conky-all-dbg

References

Summary

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