How To Install libpolyorb3-dev on Debian 9

In this tutorial we learn how to install libpolyorb3-dev on Debian 9. libpolyorb3-dev is Multiple-personality middleware for Ada (development)

Introduction

In this tutorial we learn how to install libpolyorb3-dev on Debian 9.

What is libpolyorb3-dev

libpolyorb3-dev is:

PolyORB provides a uniform solution to build distributed applications; relying either on industrial-strength middleware standards such as CORBA, the Distributed System Annex of Ada 95, distribution programming paradigms such as Web Services, Message Oriented Middleware (MOM), or to implement application-specific middleware.

This package provides the development files and utilities necessary to develop distributed applications using PolyORB.

Distributed applications will also require the polyorb-servers package but not necessarily on the same machine.

There are three methods to install libpolyorb3-dev on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libpolyorb3-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 libpolyorb3-dev using apt-get by running the following command:

sudo apt-get -y install libpolyorb3-dev

Install libpolyorb3-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libpolyorb3-dev

Install libpolyorb3-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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libpolyorb3-dev

How To Uninstall libpolyorb3-dev on Debian 9

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

sudo apt-get remove libpolyorb3-dev

Uninstall libpolyorb3-dev And Its Dependencies

To uninstall libpolyorb3-dev and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove libpolyorb3-dev

Remove libpolyorb3-dev Configurations and Data

To remove libpolyorb3-dev configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge libpolyorb3-dev

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

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

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

Dependencies

libpolyorb3-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libpolyorb3-dev package on Debian 9 using different package management tools: apt, apt-get and aptitude.