How To Install python3-ceph-common on Ubuntu 20.04

In this tutorial we learn how to install python3-ceph-common on Ubuntu 20.04. python3-ceph-common is Python 3 utility libraries for Ceph Python 3 utility libraries for Ceph Python 3 utility libraries for Ceph

Introduction

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

What is python3-ceph-common

python3-ceph-common is:

Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

This package contains data structures, classes and functions used by Ceph. It also contains utilities used for the cephadm orchestrator.

Package: python3-ceph-common Architecture: all Version: 15.2.12-0ubuntu0.20.04.1 Priority: optional Section: python Source: ceph Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Ceph Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 221 Depends: python3-six, python3-yaml, python3:any Filename: pool/main/c/ceph/python3-ceph-common_15.2.12-0ubuntu0.20.04.1_all.deb Size: 39856 MD5sum: 60b365654a72b4eba38eb821d450ae7a SHA1: 9524863dec296b03e4e0c21868fdf950f78a9c4b SHA256: fd9c5eef48afb89a9fe50c94ce66e24852185547e14dd1238bfb82029596616d SHA512: 7eda9c7443cf0f59a7cef2779ed9cd72026f766a4f5150ed91071654b9d887f4aedab164820eba9be4e491dbbaafdae57c5c940d51b3d2df96fe61c7c796bbbc Homepage: http://ceph.com/ Description-en: Python 3 utility libraries for Ceph Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

This package contains data structures, classes and functions used by Ceph. It also contains utilities used for the cephadm orchestrator.

Package: python3-ceph-common Architecture: all Version: 15.2.1-0ubuntu1 Priority: optional Section: python Source: ceph Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Ceph Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 188 Depends: python3-six, python3:any Filename: pool/main/c/ceph/python3-ceph-common_15.2.1-0ubuntu1_all.deb Size: 33920 MD5sum: c583b46558ee27a53e3dacc03ec07720 SHA1: 8cf8374fbcd6b8fa4765ec131233afae69d24b04 SHA256: ecf5e9ffb47aee7383fbddbfc47760d03156129be9fd8f845293ab8512a03a35 Homepage: http://ceph.com/ Description-en: Python 3 utility libraries for Ceph Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

This package contains data structures, classes and functions used by Ceph. It also contains utilities used for the cephadm orchestrator.

There are three methods to install python3-ceph-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 python3-ceph-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 python3-ceph-common using apt-get by running the following command:

sudo apt-get -y install python3-ceph-common

Install python3-ceph-common Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-ceph-common

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

sudo aptitude -y install python3-ceph-common

How To Uninstall python3-ceph-common on Ubuntu 20.04

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

sudo apt-get remove python3-ceph-common

Uninstall python3-ceph-common And Its Dependencies

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

sudo apt-get -y autoremove python3-ceph-common

Remove python3-ceph-common Configurations and Data

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

sudo apt-get -y purge python3-ceph-common

Remove python3-ceph-common configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-ceph-common

References

Summary

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