How To Install ubuntu-dbgsym-keyring on Debian 10

Learn how to install ubuntu-dbgsym-keyring on Debian 10 with this tutorial. ubuntu-dbgsym-keyring is GnuPG keys of the Ubuntu Debug Symbols Archive

Introduction

In this tutorial we learn how to install ubuntu-dbgsym-keyring on Debian 10.

What is ubuntu-dbgsym-keyring

ubuntu-dbgsym-keyring is:

The Ubuntu project digitally signs its Release files. This package contains below archive keys used for the ddebs.ubuntu.com repository.

  • ubuntu-dbgsym-keyring
  • ubuntu-dbgsym-removed-keys
  • ubuntu-keyring-2016-dbgsym

There are three methods to install ubuntu-dbgsym-keyring 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 ubuntu-dbgsym-keyring Using apt-get

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

sudo apt-get update

After updating apt database, We can install ubuntu-dbgsym-keyring using apt-get by running the following command:

sudo apt-get -y install ubuntu-dbgsym-keyring

Install ubuntu-dbgsym-keyring Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ubuntu-dbgsym-keyring using apt by running the following command:

sudo apt -y install ubuntu-dbgsym-keyring

Install ubuntu-dbgsym-keyring 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 ubuntu-dbgsym-keyring using aptitude by running the following command:

sudo aptitude -y install ubuntu-dbgsym-keyring

How To Uninstall ubuntu-dbgsym-keyring on Debian 10

To uninstall only the ubuntu-dbgsym-keyring package we can use the following command:

sudo apt-get remove ubuntu-dbgsym-keyring

Uninstall ubuntu-dbgsym-keyring And Its Dependencies

To uninstall ubuntu-dbgsym-keyring and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove ubuntu-dbgsym-keyring

Remove ubuntu-dbgsym-keyring Configurations and Data

To remove ubuntu-dbgsym-keyring configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge ubuntu-dbgsym-keyring

Remove ubuntu-dbgsym-keyring configuration, data, and all of its dependencies

We can use the following command to remove ubuntu-dbgsym-keyring configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ubuntu-dbgsym-keyring

Dependencies

ubuntu-dbgsym-keyring have the following dependencies:

References

Summary

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