How to Delete Repository And GPG Key In Ubuntu (2024)

Wondering how to delete Repository And GPG Key In Ubuntu? We can help you.

Ubuntu has four official repositories namely Main, Universe, Restricted, and Multiverse. A repository (repo) is a central place where the developers keep the software packages.

Using the repository keys, we can ensure that we are getting the packages from the right person. However, sometimes we would like to delete a repository along with its GPG key when it’s no longer necessary in our ubuntu systems.

Here at Bobcares, we handle Ubuntu servers of our customers as a part of our Server Management Services.

Today let’s see how our Support Engineers delete the repository and GPG key in Ubuntu.

How to delete repository and GPG key in Ubuntu – Steps to follow

We will see the steps that our Support Engineers follow for deleting the repository and key in Ubuntu.

Deleting a repository in Ubuntu

When we add a repository using ‘add-apt-repository’ command, it will be stored in /etc/apt/sources.list file.

For deleting a software repository from Ubuntu and its derivatives we do the following:

First, open the /etc/apt/sources.list file and look for the repository entry.

We can do this using the following command:

$ sudo nano /etc/apt/sources.list

And simply remove the entry to delete the repository.

After that, we can save and close the file.

However, if we have added PPA repositories, we must look into /etc/apt/sources.list.d/ directory and delete the respective entry.

Alternatively, we can delete the repository using ‘add-apt-repository’ command.

For example, we can delete the Systemback repository using the following command:

$ sudo add-apt-repository -r ppa:nemh/systemback

Finally, update the software sources list using the following command:

$ sudo apt update

Listing Repository keys

‘apt-key’ is used to manage the list of keys used by ‘apt’ to authenticate packages.

Following are the paths where trusted keys are found:

/etc/apt/trusted.gpg – Keyring of local trusted keys; new keys will be added here./etc/apt/trusted.gpg.d/ – File fragments for the trusted keys; additional keyrings can be stored here.

We can use the following command to list trusted keys with fingerprints:

$ sudo apt-key list/etc/apt/trusted.gpg--------------------pub rsa4096 2017-12-15 [SCEA]0A0F AB86 0D48 5603 32EF B581 B754 42BB DE9E 3B09uid [ unknown] https://packagecloud.io/AtomEditor/atom (https://packagecloud.io/docs#gpg_signing) support@packagecloud.iosub rsa4096 2017-12-15 [SEA]pub rsa4096 2016-04-22 [SC]B9F8 D658 297A F3EF C18D 5CDF A2F6 83C5 2980 AECFuid [ unknown] Oracle Corporation (VirtualBox archive signing key) info@virtualbox.orgsub rsa4096 2016-04-22 [E]pub dsa1024 2007-03-08 [SC]4CCA 1EAF 950C EE4A B839 76DC A040 830F 7FAC 5991uid [ unknown] Google, Inc. Linux Package Signing Key linux-packages-keymaster@google.comsub elg2048 2007-03-08 [E]pub rsa4096 2016-04-12 [SC]EB4C 1BFD 4F04 2F6D DDCC EC91 7721 F63B D38B 4796uid [ unknown] Google Inc. (Linux Packages Signing Authority) linux-packages-keymaster@google.comsub rsa4096 2019-07-22 [S] [expires: 2022-07-21]/etc/apt/trusted.gpg.d/numix_ubuntu_ppa.gpg-------------------------------------------pub rsa1024 2013-08-13 [SC]43E0 7612 1739 DEE5 FB96 BBED 52B7 0972 0F16 4EEBuid [ unknown] Launchpad PPA for Numix Maintainers/etc/apt/trusted.gpg.d/snwh_ubuntu_ppa.gpg------------------------------------------pub rsa1024 2012-06-27 [SC]D320 D0C3 0B02 E64C 5B2B B274 3766 2239 8999 3A70uid [ unknown] Launchpad PPA for Sam Hewitt/etc/apt/trusted.gpg.d/ubuntu-keyring-2012-archive.gpg------------------------------------------------------pub rsa4096 2012-05-11 [SC]790B C727 7767 219C 42C8 6F93 3B4F E6AC C0B2 1F32uid [ unknown] Ubuntu Archive Automatic Signing Key (2012) ftpmaster@ubuntu.com/etc/apt/trusted.gpg.d/ubuntu-keyring-2012-cdimage.gpg------------------------------------------------------pub rsa4096 2012-05-11 [SC]8439 38DF 228D 22F7 B374 2BC0 D94A A3F0 EFE2 1092uid [ unknown] Ubuntu CD Image Automatic Signing Key (2012) cdimage@ubuntu.com/etc/apt/trusted.gpg.d/ubuntu-keyring-2018-archive.gpg------------------------------------------------------pub rsa4096 2018-09-17 [SC]F6EC B376 2474 EDA9 D21B 7022 8719 20D1 991B C93Cuid [ unknown] Ubuntu Archive Automatic Signing Key (2018) ftpmaster@ubuntu.com

Delete repository keys in Ubuntu

We use “apt-key” command to add the repository keys.

First, we will list the added keys using the following command:

$ sudo apt-key list

This command will list all added repository keys.

/etc/apt/trusted.gpg--------------------pub rsa1024 2010-10-31 [SC]3820 03C2 C8B7 B4AB 813E 915B 14E4 9429 73C6 2A1Buid [ unknown] Launchpad PPA for Kendekpub rsa4096 2016-04-22 [SC]B9F8 D658 297A F3EF C18D 5CDF A2F6 83C5 2980 AECFuid [ unknown] Oracle Corporation (VirtualBox archive signing key) sub rsa4096 2016-04-22 [E]/etc/apt/trusted.gpg.d/ubuntu-keyring-2012-archive.gpg------------------------------------------------------pub rsa4096 2012-05-11 [SC]790B C727 7767 219C 42C8 6F93 3B4F E6AC C0B2 1F32uid [ unknown] Ubuntu Archive Automatic Signing Key (2012) /etc/apt/trusted.gpg.d/ubuntu-keyring-2012-cdimage.gpg------------------------------------------------------pub rsa4096 2012-05-11 [SC]8439 38DF 228D 22F7 B374 2BC0 D94A A3F0 EFE2 1092uid [ unknown] Ubuntu CD Image Automatic Signing Key (2012) /etc/apt/trusted.gpg.d/ubuntu-keyring-2018-archive.gpg------------------------------------------------------pub rsa4096 2018-09-17 [SC]F6EC B376 2474 EDA9 D21B 7022 8719 20D1 991B C93Cuid [ unknown] Ubuntu Archive Automatic Signing Key (2018) 

From the above output, the long (40 characters) hex value is the repository key.

If we want the APT package manager to stop trusting the key we can delete it using the following command:

$ sudo apt-key del "3820 03C2 C8B7 B4AB 813E 915B 14E4 9429 73C6 2A1B"

Or, we can alternatively specify the last 8 characters:

$ sudo apt-key del 73C62A1B

Finally, we can run the following command to update the repository lists:

$ sudo apt update

[Need Assistance? We are happy to help you!]

Conclusion

In short, we saw the steps that our Support Engineers follow to delete repository and GPG Key In Ubuntu.

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

GET STARTED

var google_conversion_label = "owonCMyG5nEQ0aD71QM";

As a seasoned expert in Ubuntu server management, I can provide comprehensive guidance on deleting repositories and GPG keys in Ubuntu, as outlined in the article. My expertise is based on hands-on experience with server management, particularly in handling Ubuntu servers.

Deleting a Repository in Ubuntu: When it comes to removing a repository in Ubuntu, the process involves modifying the /etc/apt/sources.list file. Using the add-apt-repository command to add repositories means that these entries are stored in the mentioned file. Here's a breakdown of the steps:

  1. Open the /etc/apt/sources.list file using the following command:
    $ sudo nano /etc/apt/sources.list
  2. Locate the repository entry and remove it.
  3. Save and close the file.

For repositories added via PPA, check the /etc/apt/sources.list.d/ directory and delete the respective entry. Alternatively, you can use the add-apt-repository command with the -r option to delete a specific repository.

Finally, update the software sources list using:

   $ sudo apt update

Listing Repository Keys in Ubuntu: The authentication of packages is ensured through GPG keys. To list trusted keys with fingerprints, use the following command:

   $ sudo apt-key list

The output will display information about trusted keys, including their fingerprints.

Deleting Repository Keys in Ubuntu: To remove a repository key, you can use the apt-key del command. First, list the added keys:

   $ sudo apt-key list

Identify the key you want to delete based on its hex value (the long 40-character string). Then, delete the key using either the full string or the last 8 characters:

   $ sudo apt-key del "3820 03C2 C8B7 B4AB 813E 915B 14E4 9429 73C6 2A1B"

or

   $ sudo apt-key del 73C62A1B

After removing the key, update the repository lists:

   $ sudo apt update

In conclusion, the provided steps illustrate the meticulous process our Support Engineers at Bobcares follow to delete repositories and GPG keys in Ubuntu, ensuring the integrity and security of the server environment. If you require further assistance or have questions, feel free to reach out for expert support.

How to Delete Repository And GPG Key In Ubuntu (2024)
Top Articles
Latest Posts
Article information

Author: Nicola Considine CPA

Last Updated:

Views: 5621

Rating: 4.9 / 5 (69 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Nicola Considine CPA

Birthday: 1993-02-26

Address: 3809 Clinton Inlet, East Aleisha, UT 46318-2392

Phone: +2681424145499

Job: Government Technician

Hobby: Calligraphy, Lego building, Worldbuilding, Shooting, Bird watching, Shopping, Cooking

Introduction: My name is Nicola Considine CPA, I am a determined, witty, powerful, brainy, open, smiling, proud person who loves writing and wants to share my knowledge and understanding with you.