How To Install ubuntu-dbgsym-keyring on Ubuntu 20.04

In this tutorial we learn how to install ubuntu-dbgsym-keyring on Ubuntu 20.04. ubuntu-dbgsym-keyring is GnuPG keys of the Ubuntu Debug Symbols Archive GnuPG keys of the Ubuntu Debug Symbols Archive

Introduction

In this tutorial we learn how to install ubuntu-dbgsym-keyring on Ubuntu 20.04.

What is ubuntu-dbgsym-keyring

ubuntu-dbgsym-keyring is:

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

Package: ubuntu-dbgsym-keyring Architecture: all Version: 2020.02.11.2 Priority: optional Section: misc Source: ubuntu-keyring Origin: Ubuntu Maintainer: Dimitri John Ledkov [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 23 Filename: pool/main/u/ubuntu-keyring/ubuntu-dbgsym-keyring_2020.02.11.2_all.deb Size: 7116 MD5sum: bd2a2dea3bdc457db36fa296bed8af49 SHA1: ad33fd606c4613d35828302a3ab2430285319985 SHA256: b447c6dae4b483f9907bec2ac33b36f0c6ee34caac0623ed79c8b3d16f937f28 Description-en: GnuPG keys of the Ubuntu Debug Symbols Archive The Ubuntu project digitally signs its Release files. This package contains the archive keys used for the ddebs.ubuntu.com repository.

There are three methods to install ubuntu-dbgsym-keyring 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 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 Ubuntu. 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 Ubuntu 20.04

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 Ubuntu 20.04, 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 Ubuntu 20.04 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

References

Summary

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