How To Install cinder-common on Ubuntu 20.04

In this tutorial we learn how to install cinder-common on Ubuntu 20.04. cinder-common is Cinder storage service - common files Cinder storage service - common files Cinder storage service - common files

Introduction

In this tutorial we learn how to install cinder-common on Ubuntu 20.04.

What is cinder-common

cinder-common is:

OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

Cinder is the OpenStack Block storage service.

This package contains commons components for Cinder.

Package: cinder-common Architecture: all Version: 2:16.1.0-0ubuntu1 Priority: extra Section: net Source: cinder Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 61 Depends: adduser Breaks: cinder-api (« 2:13.0.0~rc1-0ubuntu3~), cinder-backup (« 2:13.0.0~rc1-0ubuntu3~), cinder-scheduler (« 2:13.0.0~rc1-0ubuntu3~), cinder-volume (« 2:13.0.0~rc1-0ubuntu3~) Replaces: cinder-api (« 2:13.0.0~rc1-0ubuntu3~), cinder-backup (« 2:13.0.0~rc1-0ubuntu3~), cinder-scheduler (« 2:13.0.0~rc1-0ubuntu3~), cinder-volume (« 2:13.0.0~rc1-0ubuntu3~) Filename: pool/main/c/cinder/cinder-common_16.1.0-0ubuntu1_all.deb Size: 8332 MD5sum: 2cc85f81620f49ebaff2e6888284e00c SHA1: babf86c0c8fa98676531de67c6be35409c51052d SHA256: 61e624858428292cfb864b0180faff076b323d279193d3ef01faf85d66df6c78 SHA512: ffc1f2b257a78861197f8d24efa6f8c500fb3a2266a880409f334bd3bbbe150d3d0fe340dc7e43ead45559a86de27d538c3abfce728d2599397f5c490528afdd Homepage: https://launchpad.net/cinder Description-en: Cinder storage service - common files OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

Cinder is the OpenStack Block storage service.

This package contains commons components for Cinder.

Package: cinder-common Architecture: all Version: 2:16.0.0~b3~git2020041012.eb915e2db-0ubuntu1 Priority: extra Section: net Source: cinder Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 61 Depends: adduser Breaks: cinder-api (« 2:13.0.0~rc1-0ubuntu3~), cinder-backup (« 2:13.0.0~rc1-0ubuntu3~), cinder-scheduler (« 2:13.0.0~rc1-0ubuntu3~), cinder-volume (« 2:13.0.0~rc1-0ubuntu3~) Replaces: cinder-api (« 2:13.0.0~rc1-0ubuntu3~), cinder-backup (« 2:13.0.0~rc1-0ubuntu3~), cinder-scheduler (« 2:13.0.0~rc1-0ubuntu3~), cinder-volume (« 2:13.0.0~rc1-0ubuntu3~) Filename: pool/main/c/cinder/cinder-common_16.0.0~b3~git2020041012.eb915e2db-0ubuntu1_all.deb Size: 8048 MD5sum: 0d65bdf639ffc5b9537241ae11c05a6f SHA1: bcf5840082de5145b8310f1204d0b3c5b9d190ea SHA256: a87d1a16cb857d04f6bf1491dcaed9c53a382574004dec18bd7773847ac8bbc5 Homepage: https://launchpad.net/cinder Description-en: Cinder storage service - common files OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

Cinder is the OpenStack Block storage service.

This package contains commons components for Cinder.

There are three methods to install cinder-common 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 cinder-common Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install cinder-common using apt-get by running the following command:

sudo apt-get -y install cinder-common

Install cinder-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cinder-common using apt by running the following command:

sudo apt -y install cinder-common

Install cinder-common 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 cinder-common using aptitude by running the following command:

sudo aptitude -y install cinder-common

How To Uninstall cinder-common on Ubuntu 20.04

To uninstall only the cinder-common package we can use the following command:

sudo apt-get remove cinder-common

Uninstall cinder-common And Its Dependencies

To uninstall cinder-common and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove cinder-common

Remove cinder-common Configurations and Data

To remove cinder-common configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge cinder-common

Remove cinder-common configuration, data, and all of its dependencies

We can use the following command to remove cinder-common configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cinder-common

References

Summary

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