How To Install ubuntu-cloudimage-keyring on Ubuntu 20.04
Introduction
In this tutorial we learn how to install ubuntu-cloudimage-keyring on Ubuntu 20.04.
What is ubuntu-cloudimage-keyring
ubuntu-cloudimage-keyring is:
This package can be safely removed, as cloudimage keyring is now shipped in the ubuntu-keyring package
Package: ubuntu-cloudimage-keyring Architecture: all Version: 2020.02.11.2 Multi-Arch: foreign Priority: optional Section: universe/misc Source: ubuntu-keyring Origin: Ubuntu Maintainer: Dimitri John Ledkov [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 11 Depends: ubuntu-keyring (>= 2018.02.06) Filename: pool/universe/u/ubuntu-keyring/ubuntu-cloudimage-keyring_2020.02.11.2_all.deb Size: 1740 MD5sum: c6a2111d4f8eb58b1335773db12bb44f SHA1: 8dc890f51cba9593bb187e0a3b4c8db2fef7c20c SHA256: 669e09c36442ab969f1b2a7c29dd328eef3e6fc679a5e518b9a65a30b6f3967c Description-en: dummy transitional package for GnuPG keys of cloudimage keyring This package can be safely removed, as cloudimage keyring is now shipped in the ubuntu-keyring package
There are three methods to install ubuntu-cloudimage-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-cloudimage-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-cloudimage-keyring using apt-get by running the following command:
sudo apt-get -y install ubuntu-cloudimage-keyring
Install ubuntu-cloudimage-keyring Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install ubuntu-cloudimage-keyring using apt by running the following command:
sudo apt -y install ubuntu-cloudimage-keyring
Install ubuntu-cloudimage-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-cloudimage-keyring using aptitude by running the following command:
sudo aptitude -y install ubuntu-cloudimage-keyring
How To Uninstall ubuntu-cloudimage-keyring on Ubuntu 20.04
To uninstall only the ubuntu-cloudimage-keyring package we can use the following command:
sudo apt-get remove ubuntu-cloudimage-keyring
Uninstall ubuntu-cloudimage-keyring And Its Dependencies
To uninstall ubuntu-cloudimage-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-cloudimage-keyring
Remove ubuntu-cloudimage-keyring Configurations and Data
To remove ubuntu-cloudimage-keyring configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge ubuntu-cloudimage-keyring
Remove ubuntu-cloudimage-keyring configuration, data, and all of its dependencies
We can use the following command to remove ubuntu-cloudimage-keyring configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ubuntu-cloudimage-keyring
References
Summary
In this tutorial we learn how to install ubuntu-cloudimage-keyring package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.