How To Install libcrmcommon-dev on Ubuntu 20.04

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

Introduction

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

What is libcrmcommon-dev

libcrmcommon-dev is:

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

Package: libcrmcommon-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/libcrmcommon-dev_2.0.3-3ubuntu4.1_all.deb Size: 8560 MD5sum: 3d0710542b6abe952d8b4915dd9e8111 SHA1: 76c08aaceaea78bc6dc0a6cf50be1e6e1b9be969 SHA256: ca4d727a138268543acb01ffccabbcabc21ed9c67cc1d3138e6d6a44d9d9b175 SHA512: 2f41a0851e97ead4149cf6ec884c6f35a1a7996acdeca09bb6d3ec0e5711ad5ea298b662e7efc2f54baffd755f1066e6eddee486157834a0972b25633e90f216 Homepage: https://www.clusterlabs.org/ Description-en: transitional package This is a transitional package. It can safely be removed.

Package: libcrmcommon-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/libcrmcommon-dev_2.0.3-3ubuntu3_all.deb Size: 8552 MD5sum: f8473423e9a2da56552b2cb47be8b66b SHA1: 774557fe92819fe176b1cadcc055c2ec7d64a9e7 SHA256: 953a714cca36fa5c1a36293cb96d8d65e9f9262cf4f22881905716c918102be6 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 libcrmcommon-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 libcrmcommon-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 libcrmcommon-dev using apt-get by running the following command:

sudo apt-get -y install libcrmcommon-dev

Install libcrmcommon-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcrmcommon-dev

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

sudo aptitude -y install libcrmcommon-dev

How To Uninstall libcrmcommon-dev on Ubuntu 20.04

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

sudo apt-get remove libcrmcommon-dev

Uninstall libcrmcommon-dev And Its Dependencies

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

sudo apt-get -y autoremove libcrmcommon-dev

Remove libcrmcommon-dev Configurations and Data

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

sudo apt-get -y purge libcrmcommon-dev

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

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

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

References

Summary

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