How To Install lxdm-dbg on Ubuntu 20.04

In this tutorial we learn how to install lxdm-dbg on Ubuntu 20.04. lxdm-dbg is LXDE display manager (debug symbols)

Introduction

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

What is lxdm-dbg

lxdm-dbg is:

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

This package contains debugging symbols for the LXDM. Build-Ids: 3bfa59040cf0831fcabf7f87ace2da76e5de904f 85efa38723f9b094e6cc988a93f57f28c067f274 bb0c8de8c1c919d1be2d0e1cbb91372f6594cc19 bd7bf42abb7912d672d5df8e466bebbf3a34cc09 cc680e24645d19a9563466cd93d956601eca0142 df2e1b10cac46e9a44951388a101bc4a8c040ca9

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

sudo apt-get -y install lxdm-dbg

Install lxdm-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install lxdm-dbg

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

sudo aptitude -y install lxdm-dbg

How To Uninstall lxdm-dbg on Ubuntu 20.04

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

sudo apt-get remove lxdm-dbg

Uninstall lxdm-dbg And Its Dependencies

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

sudo apt-get -y autoremove lxdm-dbg

Remove lxdm-dbg Configurations and Data

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

sudo apt-get -y purge lxdm-dbg

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

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

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

References

Summary

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