How To Install ceph-immutable-object-cache on Ubuntu 20.04

In this tutorial we learn how to install ceph-immutable-object-cache on Ubuntu 20.04. ceph-immutable-object-cache is Ceph daemon for immutable object cache Ceph daemon for immutable object cache Ceph daemon for immutable object cache

Introduction

In this tutorial we learn how to install ceph-immutable-object-cache on Ubuntu 20.04.

What is ceph-immutable-object-cache

ceph-immutable-object-cache 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 is a daemon for immutable object cache.

Package: ceph-immutable-object-cache Architecture: amd64 Version: 15.2.12-0ubuntu0.20.04.1 Priority: optional Section: universe/admin 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: 682 Depends: librados2 (= 15.2.12-0ubuntu0.20.04.1), libc6 (>= 2.28), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) Filename: pool/universe/c/ceph/ceph-immutable-object-cache_15.2.12-0ubuntu0.20.04.1_amd64.deb Size: 193688 MD5sum: 85afa7dd68fbd54dd9cfaff1fc203c92 SHA1: 572b06f31ecbccb268b72686127bd24fb29a748f SHA256: d30040c300cc05cd0e88020ff0171a0680fa5b4e0e1070e66af67f6871dd00d7 SHA512: add963bf2de63d096235bd2844812d142daeebd7a1c346f55cd6bda43a25c9dc0cab8f079c70e21566cf9f9743c8018f74878c6aaaf13c9c84e76c2218186c6b Homepage: http://ceph.com/ Description-en: Ceph daemon for immutable object cache Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage. This is a daemon for immutable object cache.

Package: ceph-immutable-object-cache Architecture: amd64 Version: 15.2.1-0ubuntu1 Priority: optional Section: universe/admin 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: 681 Depends: librados2 (= 15.2.1-0ubuntu1), libc6 (>= 2.28), libgcc-s1 (>= 3.0), libstdc++6 (>= 9) Filename: pool/universe/c/ceph/ceph-immutable-object-cache_15.2.1-0ubuntu1_amd64.deb Size: 193504 MD5sum: b7bbb0e11b1021c17ed56070c511c014 SHA1: 7fb9ae02791708ca60c647d46d13ce66146dbfb9 SHA256: e086552e63214c810dffddd19090a0ee564fe715a32eb58a4a1810cfe64e3d95 Homepage: http://ceph.com/ Description-en: Ceph daemon for immutable object cache Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage. This is a daemon for immutable object cache.

There are three methods to install ceph-immutable-object-cache 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 ceph-immutable-object-cache Using apt-get

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

sudo apt-get update

After updating apt database, We can install ceph-immutable-object-cache using apt-get by running the following command:

sudo apt-get -y install ceph-immutable-object-cache

Install ceph-immutable-object-cache Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ceph-immutable-object-cache using apt by running the following command:

sudo apt -y install ceph-immutable-object-cache

Install ceph-immutable-object-cache 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 ceph-immutable-object-cache using aptitude by running the following command:

sudo aptitude -y install ceph-immutable-object-cache

How To Uninstall ceph-immutable-object-cache on Ubuntu 20.04

To uninstall only the ceph-immutable-object-cache package we can use the following command:

sudo apt-get remove ceph-immutable-object-cache

Uninstall ceph-immutable-object-cache And Its Dependencies

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

sudo apt-get -y autoremove ceph-immutable-object-cache

Remove ceph-immutable-object-cache Configurations and Data

To remove ceph-immutable-object-cache configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge ceph-immutable-object-cache

Remove ceph-immutable-object-cache configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ceph-immutable-object-cache

References

Summary

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