How To Install libpengine-dev on Ubuntu 20.04

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

Introduction

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

What is libpengine-dev

libpengine-dev is:

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

Package: libpengine-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/libpengine-dev_2.0.3-3ubuntu4.1_all.deb Size: 8560 MD5sum: c668cc92e0e539c5d7907a73494fbe7f SHA1: 4b6401ffa011196285bfd41d43d4a450cd2c8dd2 SHA256: 24e84b35c8c8435c1811fae07e3cf85d3c1992899e77fcd920ece84190726b33 SHA512: 727ec6970f22d2062c9f01d509d398c399df66cfe682ee32ddcc73bedce85a6b74a59fd3365e59d103da88b40c180cffc6aa81e2c5319ffeea82714a904000cd Homepage: https://www.clusterlabs.org/ Description-en: transitional package This is a transitional package. It can safely be removed.

Package: libpengine-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/libpengine-dev_2.0.3-3ubuntu3_all.deb Size: 8552 MD5sum: 731991bed966d5f8e15942bfd79482bf SHA1: cbb7db2067672554926d089c15d35aa53f8a8928 SHA256: 7614613852fc5d31ca180e2079659567e40515de71f2fe20dea72d0818297740 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 libpengine-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 libpengine-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 libpengine-dev using apt-get by running the following command:

sudo apt-get -y install libpengine-dev

Install libpengine-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libpengine-dev

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

sudo aptitude -y install libpengine-dev

How To Uninstall libpengine-dev on Ubuntu 20.04

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

sudo apt-get remove libpengine-dev

Uninstall libpengine-dev And Its Dependencies

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

sudo apt-get -y autoremove libpengine-dev

Remove libpengine-dev Configurations and Data

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

sudo apt-get -y purge libpengine-dev

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

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

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

References

Summary

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