How To Install ORBit2 on CentOS 7
Introduction
In this tutorial we learn how to install ORBit2
on CentOS 7.
What is ORBit2
ORBit is a high-performance CORBA (Common Object Request Broker Architecture) ORB (object request broker). It allows programs to send requests and receive replies from other programs, regardless of the locations of the two programs. CORBA is an architecture that enables communication between program objects, regardless of the programming language they’re written in or the operating system they run on. You will need to install this package and ORBit-devel if you want to write programs that use CORBA technology. ORBit is a high-performance CORBA (Common Object Request Broker Architecture) ORB (object request broker). It allows programs to send requests and receive replies from other programs, regardless of the locations of the two programs. CORBA is an architecture that enables communication between program objects, regardless of the programming language they’re written in or the operating system they run on. You will need to install this package and ORBit-devel if you want to write programs that use CORBA technology.
We can use yum
or dnf
to install ORBit2
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install ORBit2.
Install ORBit2 on CentOS 7 Using yum
Update yum database with yum
using the following command.
After updating yum database, We can install ORBit2
using yum
by running the following command:
Install ORBit2 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.
After updating yum database, We can install ORBit2
using dnf
by running the following command:
How To Uninstall ORBit2 on CentOS 7
To uninstall only the ORBit2
package we can use the following command:
References
Summary
In this tutorial we learn how to install ORBit2
on CentOS 7 using yum
and dnf
.