How To Install ldh-gui-suite on Debian 10

Learn how to install ldh-gui-suite on Debian 10 with this tutorial. ldh-gui-suite is

Introduction

In this tutorial we learn how to install ldh-gui-suite on Debian 10.

What is ldh-gui-suite

ldh-gui-suite is:

There are three methods to install ldh-gui-suite 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 ldh-gui-suite Using apt-get

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

sudo apt-get update

After updating apt database, We can install ldh-gui-suite using apt-get by running the following command:

sudo apt-get -y install ldh-gui-suite

Install ldh-gui-suite Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ldh-gui-suite using apt by running the following command:

sudo apt -y install ldh-gui-suite

Install ldh-gui-suite 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 ldh-gui-suite using aptitude by running the following command:

sudo aptitude -y install ldh-gui-suite

How To Uninstall ldh-gui-suite on Debian 10

To uninstall only the ldh-gui-suite package we can use the following command:

sudo apt-get remove ldh-gui-suite

Uninstall ldh-gui-suite And Its Dependencies

To uninstall ldh-gui-suite and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove ldh-gui-suite

Remove ldh-gui-suite Configurations and Data

To remove ldh-gui-suite configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge ldh-gui-suite

Remove ldh-gui-suite configuration, data, and all of its dependencies

We can use the following command to remove ldh-gui-suite configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ldh-gui-suite

Dependencies

ldh-gui-suite have the following dependencies:

References

Summary

In this tutorial we learn how to install ldh-gui-suite package on Debian 10 using different package management tools: apt, apt-get and aptitude.