How To Install libcib27 on Ubuntu 20.04

In this tutorial we learn how to install libcib27 on Ubuntu 20.04. libcib27 is cluster resource manager CIB library cluster resource manager CIB library cluster resource manager CIB library

Introduction

In this tutorial we learn how to install libcib27 on Ubuntu 20.04.

What is libcib27

libcib27 is:

At its core, Pacemaker is a distributed finite state machine capable of co-ordinating the startup and recovery of inter-related services across a set of machines.

Pacemaker understands many different resource types (OCF, SYSV, systemd) and can accurately model the relationships between them (colocation, ordering).

It can even use technology such as Docker to automatically isolate the resources managed by the cluster.

This package contains the Cluster Information Base library.

Package: libcib27 Architecture: amd64 Version: 2.0.3-3ubuntu4.1 Multi-Arch: same Priority: optional Section: libs Source: pacemaker Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian HA Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 195 Depends: libc6 (>= 2.7), libcrmcommon34 (>= 2.0.1~rc2), libglib2.0-0 (>= 2.12.0), libgnutls30 (>= 3.6.5), libpe-rules26 (>= 2.0.3), libqb0 (>= 0.17.1), libxml2 (>= 2.7.4) Filename: pool/main/p/pacemaker/libcib27_2.0.3-3ubuntu4.1_amd64.deb Size: 51164 MD5sum: 3c2d4b8fc68faf45777cf1f3b27e2d9e SHA1: 560d6c3a243923c452804aabf6c0322de8028416 SHA256: 043777a2041d8a06edefef97b3ce9d3197dd71c846e0c730d98d8982158c0b2f SHA512: 7be3f7856790e956289941121f53bf2c1d447b382044e302d53c43735844091ae95e3bcf130750e45f0261b6543a7d2b1d3fe6d73cbfd51340fe0398a380991c Homepage: https://www.clusterlabs.org/ Description-en: cluster resource manager CIB library At its core, Pacemaker is a distributed finite state machine capable of co-ordinating the startup and recovery of inter-related services across a set of machines.

Pacemaker understands many different resource types (OCF, SYSV, systemd) and can accurately model the relationships between them (colocation, ordering).

It can even use technology such as Docker to automatically isolate the resources managed by the cluster.

This package contains the Cluster Information Base library.

Package: libcib27 Architecture: amd64 Version: 2.0.3-3ubuntu3 Multi-Arch: same Priority: optional Section: libs Source: pacemaker Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian HA Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 195 Depends: libc6 (>= 2.7), libcrmcommon34 (>= 2.0.1~rc2), libglib2.0-0 (>= 2.12.0), libgnutls30 (>= 3.6.5), libpe-rules26 (>= 2.0.3), libqb0 (>= 0.17.1), libxml2 (>= 2.7.4) Filename: pool/main/p/pacemaker/libcib27_2.0.3-3ubuntu3_amd64.deb Size: 51000 MD5sum: d7dda79cbb87418889043cbcebf752f7 SHA1: ebf429b9c5b08dde6d5added6889db8f23a0c1e2 SHA256: 2bd51b55133fe349a3dd9ad81ebacc117f41f663565cbd387d2c0d297a3537ca Homepage: https://www.clusterlabs.org/ Description-en: cluster resource manager CIB library At its core, Pacemaker is a distributed finite state machine capable of co-ordinating the startup and recovery of inter-related services across a set of machines.

Pacemaker understands many different resource types (OCF, SYSV, systemd) and can accurately model the relationships between them (colocation, ordering).

It can even use technology such as Docker to automatically isolate the resources managed by the cluster.

This package contains the Cluster Information Base library.

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

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

sudo apt-get update

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

sudo apt-get -y install libcib27

Install libcib27 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libcib27 using apt by running the following command:

sudo apt -y install libcib27

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

sudo aptitude -y install libcib27

How To Uninstall libcib27 on Ubuntu 20.04

To uninstall only the libcib27 package we can use the following command:

sudo apt-get remove libcib27

Uninstall libcib27 And Its Dependencies

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

sudo apt-get -y autoremove libcib27

Remove libcib27 Configurations and Data

To remove libcib27 configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libcib27

Remove libcib27 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcib27

References

Summary

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