How To Install ubuntu-oem-keyring on Ubuntu 20.04

In this tutorial we learn how to install ubuntu-oem-keyring on Ubuntu 20.04. ubuntu-oem-keyring is GnuPG keys of the Ubuntu OEM Vendor Archive GnuPG keys of the Ubuntu OEM Vendor Archive

Introduction

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

What is ubuntu-oem-keyring

ubuntu-oem-keyring is:

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

Package: ubuntu-oem-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: 20 Filename: pool/main/u/ubuntu-keyring/ubuntu-oem-keyring_2020.02.11.2_all.deb Size: 5084 MD5sum: 18021553947863923b823119267780d4 SHA1: fe8aef0f350ab6844104c1110f0fb0d4e6d17ddf SHA256: 45cab1d59996f8a7ee9132c067b351b542660ef5be0ff2fba9354c5ed37e2135 Description-en: GnuPG keys of the Ubuntu OEM Vendor Archive The Ubuntu project digitally signs its Release files. This package contains the archive keys used for the oem.archive.canonical.com repository.

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

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

Install ubuntu-oem-keyring Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install ubuntu-oem-keyring

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

sudo aptitude -y install ubuntu-oem-keyring

How To Uninstall ubuntu-oem-keyring on Ubuntu 20.04

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

sudo apt-get remove ubuntu-oem-keyring

Uninstall ubuntu-oem-keyring And Its Dependencies

To uninstall ubuntu-oem-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-oem-keyring

Remove ubuntu-oem-keyring Configurations and Data

To remove ubuntu-oem-keyring configuration and data from Ubuntu 20.04 we can use the following command:

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

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

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

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

References

Summary

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