How To Install ORBit2 on Fedora 34

ORBit2 is A high-performance CORBA Object Request Broker A high-performance CORBA Object Request Broker

Introduction

In this tutorial we learn how to install ORBit2 on Fedora 34.

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. ORBit2 2.14.19 25.fc34 x86_64 186 k ORBit2-2.14.19-25.fc34.src.rpm fedora A high-performance CORBA Object Request Broker http LGPLv2+ and GPLv2+ 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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install ORBit2.

Install ORBit2 on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install ORBit2

Install ORBit2 on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install ORBit2

How To Uninstall ORBit2 on Fedora 34

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

sudo dnf remove ORBit2

ORBit2 Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/c5d9ffa786992eb0c261c1a9fd3656b57ef3f1
/usr/lib/.build-id/2f/e32ef9c0172106d8d4297ad09460082a91deac
/usr/lib/.build-id/b3
/usr/lib/.build-id/b3/f305e43d4b898fced0372da3ec1041f2b32a21
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/29ff63c39973f24ab3e302eb4036f8fea0c95a
/usr/lib/libORBit-2.so.0
/usr/lib/libORBit-2.so.0.1.0
/usr/lib/libORBit-imodule-2.so.0
/usr/lib/libORBit-imodule-2.so.0.0.0
/usr/lib/libORBitCosNaming-2.so.0
/usr/lib/libORBitCosNaming-2.so.0.1.0
/usr/lib/orbit-2.0
/usr/lib/orbit-2.0/Everything_module.so
/usr/share/doc/ORBit2
/usr/share/doc/ORBit2/AUTHORS
/usr/share/doc/ORBit2/COPYING
/usr/share/doc/ORBit2/README
/usr/share/doc/ORBit2/TODO
/usr/lib/.build-id
/usr/lib/.build-id/59
/usr/lib/.build-id/59/9d8d30c001e057341915289f0415fdd5f2701c
/usr/lib/.build-id/75
/usr/lib/.build-id/75/63e0d1c5743dbfe666f0abc6433cf671bdf433
/usr/lib/.build-id/87
/usr/lib/.build-id/87/df29a8a84460689cad91dad6a446d65586306f
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/562b74fde6df4640300c20e6ae51879cf0f904
/usr/lib64/libORBit-2.so.0
/usr/lib64/libORBit-2.so.0.1.0
/usr/lib64/libORBit-imodule-2.so.0
/usr/lib64/libORBit-imodule-2.so.0.0.0
/usr/lib64/libORBitCosNaming-2.so.0
/usr/lib64/libORBitCosNaming-2.so.0.1.0
/usr/lib64/orbit-2.0
/usr/lib64/orbit-2.0/Everything_module.so
/usr/share/doc/ORBit2
/usr/share/doc/ORBit2/AUTHORS
/usr/share/doc/ORBit2/COPYING
/usr/share/doc/ORBit2/README
/usr/share/doc/ORBit2/TODO

References

Summary

In this tutorial we learn how to install ORBit2 on Fedora 34 using yum and dnf.