How To Install libcib-dev on Ubuntu 20.04

In this tutorial we learn how to install libcib-dev on Ubuntu 20.04. libcib-dev is transitional package transitional package transitional package

Introduction

In this tutorial we learn how to install libcib-dev on Ubuntu 20.04.

What is libcib-dev

libcib-dev is:

This is a transitional package. It can safely be removed.

Package: libcib-dev Architecture: all Version: 2.0.3-3ubuntu4.1 Priority: optional Section: libdevel 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: 64 Depends: pacemaker-dev Filename: pool/main/p/pacemaker/libcib-dev_2.0.3-3ubuntu4.1_all.deb Size: 8560 MD5sum: ee14a52517e380cf7ed5d4b2ea0118e0 SHA1: 98ca1620315dcb7744237e91c4014afbbfc20233 SHA256: 7bd69131cfd52bec91d8c002daca616a6079157768ae06f5a85e03f908c63ce8 SHA512: 27195042ca9dfc8c4f405abc53c1f70414ec9b8fa9b3731a16f6d232652540a37d284b4931c42b1dc622cb8c6fa625d2d97c3e98f5d32aef477e31be89a405ac Homepage: https://www.clusterlabs.org/ Description-en: transitional package This is a transitional package. It can safely be removed.

Package: libcib-dev Architecture: all Version: 2.0.3-3ubuntu3 Priority: optional Section: libdevel 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: 64 Depends: pacemaker-dev Filename: pool/main/p/pacemaker/libcib-dev_2.0.3-3ubuntu3_all.deb Size: 8548 MD5sum: 052bb218fda7d10a077babe030ad0d5e SHA1: d8ef0d8b6c768daea4e2e520df1bbe28dda023c3 SHA256: b72853bca536f2c9f24af6517ee74f0a46f7a85fd09cbf15cf36ce736ba1e3c6 Homepage: https://www.clusterlabs.org/ Description-en: transitional package This is a transitional package. It can safely be removed.

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

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

sudo apt-get update

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

sudo apt-get -y install libcib-dev

Install libcib-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcib-dev

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

sudo aptitude -y install libcib-dev

How To Uninstall libcib-dev on Ubuntu 20.04

To uninstall only the libcib-dev package we can use the following command:

sudo apt-get remove libcib-dev

Uninstall libcib-dev And Its Dependencies

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

sudo apt-get -y autoremove libcib-dev

Remove libcib-dev Configurations and Data

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

sudo apt-get -y purge libcib-dev

Remove libcib-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcib-dev

References

Summary

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