How To Install lxpanel-dbg on Ubuntu 20.04

In this tutorial we learn how to install lxpanel-dbg on Ubuntu 20.04. lxpanel-dbg is LXDE panel (debug)

Introduction

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

What is lxpanel-dbg

lxpanel-dbg is:

LXPanel is a GUI application for the Lightweight X11 Desktop Environment (LXDE).

This package contains the debugging symbols. Build-Ids: 115240b0691d4822800df2570af162459cd9b04c 24b728badef7bd01ade6c0b8dfc21ff98063eb35 55efa04eed07c7302f8bd8bdb10f301f9b5243b9 5f02e405e62a8467cc1bcddcc0d36de041671026 68790cd67b1bd5fed3fd953818b3bdd6cabb443f 8cad16c05a2f1ae2fa96a3566e7f91622b4ae713 956e7cd27aaf50c890f5df15ba659cadccfb89c5 958782a695d3c3481e368d88b27fd6a0cc0a178e 9c1931550b86acbf75aff0665fd86d210ad3d6d2 a25386c85056eba99503c30e3f6ec3369189062a aae042cc4e687be264fa8589f391489de9834c16 af635a253e90aa507b7e75a6fd99ecd3c4d71e86 af8baff562dd8f119893ffffb6ffb1b65e04e7eb eb819fb74d17920551649ac9cb11d31cbd60f825 f7708205fc7c4590d3e1caf83a5915de3bf0ebbc

There are three methods to install lxpanel-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 lxpanel-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 lxpanel-dbg using apt-get by running the following command:

sudo apt-get -y install lxpanel-dbg

Install lxpanel-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install lxpanel-dbg

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

sudo aptitude -y install lxpanel-dbg

How To Uninstall lxpanel-dbg on Ubuntu 20.04

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

sudo apt-get remove lxpanel-dbg

Uninstall lxpanel-dbg And Its Dependencies

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

sudo apt-get -y autoremove lxpanel-dbg

Remove lxpanel-dbg Configurations and Data

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

sudo apt-get -y purge lxpanel-dbg

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

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

sudo apt-get -y autoremove --purge lxpanel-dbg

References

Summary

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