How To Install ORBit2-devel on CentOS 7

In this tutorial we learn how to install ORBit2-devel on CentOS 7. ORBit2-devel is Development libraries, header files and utilities for ORBit

Introduction

In this tutorial we learn how to install ORBit2-devel on CentOS 7.

What is ORBit2-devel

ORBit is a high-performance CORBA (Common Object Request Broker Architecture) ORB (object request broker) with support for the C language. This package contains the header files, libraries and utilities necessary to write programs that use CORBA technology. If you want to write such programs, you’ll also need to install the ORBIT package. ORBit is a high-performance CORBA (Common Object Request Broker Architecture) ORB (object request broker) with support for the C language. This package contains the header files, libraries and utilities necessary to write programs that use CORBA technology. If you want to write such programs, you’ll also need to install the ORBIT package.

We can use yum or dnf to install ORBit2-devel on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ORBit2-devel.

Install ORBit2-devel on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install ORBit2-devel using yum by running the following command:

sudo yum -y install ORBit2-devel

Install ORBit2-devel on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install ORBit2-devel using dnf by running the following command:

sudo dnf -y install ORBit2-devel

How To Uninstall ORBit2-devel on CentOS 7

To uninstall only the ORBit2-devel package we can use the following command:

sudo dnf remove ORBit2-devel

References

Summary

In this tutorial we learn how to install ORBit2-devel on CentOS 7 using yum and dnf.