How To Install libcrmcluster-dev on Ubuntu 20.04

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

Introduction

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

What is libcrmcluster-dev

libcrmcluster-dev is:

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

Package: libcrmcluster-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/libcrmcluster-dev_2.0.3-3ubuntu4.1_all.deb Size: 8568 MD5sum: 126faa953b2b0fc5f7ae87eea766ddda SHA1: 2c31ac715a3a3379f93ad798fb4c82f99932ab29 SHA256: 7c83d286de089e4d6ff546bf8ae2ba263f9aa3f56d4dac424318cef2bf734a73 SHA512: 7dabafc5d157230cb540c5ae1e73596c1c904adf74e0f1f734c6733c395c96f7bdc519c8dc40dda42b88877a998c2a7d5c9e3858910c61555e3cd53004ac95a8 Homepage: https://www.clusterlabs.org/ Description-en: transitional package This is a transitional package. It can safely be removed.

Package: libcrmcluster-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/libcrmcluster-dev_2.0.3-3ubuntu3_all.deb Size: 8556 MD5sum: 1ef1be9e815faef9f430d63045b8c267 SHA1: 3a74a11f856eabb7de848d24b4972d00b5f0d824 SHA256: 840ac5bf3f0ad7484ee3693a09588cb6df596ddecbc60bf65ed7a0d78fa055d7 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 libcrmcluster-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 libcrmcluster-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 libcrmcluster-dev using apt-get by running the following command:

sudo apt-get -y install libcrmcluster-dev

Install libcrmcluster-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcrmcluster-dev

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

sudo aptitude -y install libcrmcluster-dev

How To Uninstall libcrmcluster-dev on Ubuntu 20.04

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

sudo apt-get remove libcrmcluster-dev

Uninstall libcrmcluster-dev And Its Dependencies

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

sudo apt-get -y autoremove libcrmcluster-dev

Remove libcrmcluster-dev Configurations and Data

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

sudo apt-get -y purge libcrmcluster-dev

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

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

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

References

Summary

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