How To Install barbican-doc on Ubuntu 20.04
Introduction
In this tutorial we learn how to install barbican-doc on Ubuntu 20.04.
What is barbican-doc
barbican-doc is:
The Barbican project provides services for secure storage, provisioning and management of sensitive client secret information such as encryption keys. It is aims at being useful for all environments, including large ephemeral Clouds.
This package contains the documentation.
Package: barbican-doc Architecture: all Version: 1:10.0.0~b2~git2020020508.7b14d983-0ubuntu3 Priority: extra Section: doc Source: barbican Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 4249 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/b/barbican/barbican-doc_10.0.0~b2~git2020020508.7b14d983-0ubuntu3_all.deb Size: 1089684 MD5sum: 558275f8a79bd59e5164bd5576cd8e2a SHA1: 6c1739b703d9ec4d9af24a2bb91ed56b9d57772b SHA256: 19f2eff930a6e3efd0670dc3c783636e4a5c39c8f9316ac6b63fb5c96672646a Homepage: https://github.com/openstack/barbican Description-en: OpenStack Key Management Service - doc The Barbican project provides services for secure storage, provisioning and management of sensitive client secret information such as encryption keys. It is aims at being useful for all environments, including large ephemeral Clouds.
This package contains the documentation.
There are three methods to install barbican-doc 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 barbican-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install barbican-doc using apt-get by running the following command:
sudo apt-get -y install barbican-doc
Install barbican-doc Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install barbican-doc using apt by running the following command:
sudo apt -y install barbican-doc
Install barbican-doc 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 barbican-doc using aptitude by running the following command:
sudo aptitude -y install barbican-doc
How To Uninstall barbican-doc on Ubuntu 20.04
To uninstall only the barbican-doc package we can use the following command:
sudo apt-get remove barbican-doc
Uninstall barbican-doc And Its Dependencies
To uninstall barbican-doc and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove barbican-doc
Remove barbican-doc Configurations and Data
To remove barbican-doc configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge barbican-doc
Remove barbican-doc configuration, data, and all of its dependencies
We can use the following command to remove barbican-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge barbican-doc
References
Summary
In this tutorial we learn how to install barbican-doc package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.