How To Install librelp on Rocky Linux 8
Introduction
In this tutorial we learn how to install librelp
on Rocky Linux 8.
What is librelp
Librelp is an easy to use library for the RELP protocol. RELP (stands for Reliable Event Logging Protocol) is a general-purpose, extensible logging protocol.
We can use yum
or dnf
to install librelp
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install librelp.
Install librelp on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install librelp
using dnf
by running the following command:
sudo dnf -y install librelp
Install librelp on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install librelp
using yum
by running the following command:
sudo yum -y install librelp
How To Uninstall librelp on Rocky Linux 8
To uninstall only the librelp
package we can use the following command:
sudo dnf remove librelp
librelp Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/d6
/usr/lib/.build-id/d6/41e3ad39f2b7feafbecb104718150b9ee3d304
/usr/lib64/librelp.so.0
/usr/lib64/librelp.so.0.4.0
/usr/share/doc/librelp
/usr/share/doc/librelp/AUTHORS
/usr/share/doc/librelp/COPYING
/usr/share/doc/librelp/NEWS
/usr/share/doc/librelp/README
/usr/share/doc/librelp/gfdl.html
/usr/share/doc/librelp/relp.html
/usr/lib/.build-id
/usr/lib/.build-id/ee
/usr/lib/.build-id/ee/4b44ada095e58d40051d0ee69d8bd435a57a53
/usr/lib/librelp.so.0
/usr/lib/librelp.so.0.4.0
/usr/share/doc/librelp
/usr/share/doc/librelp/AUTHORS
/usr/share/doc/librelp/COPYING
/usr/share/doc/librelp/NEWS
/usr/share/doc/librelp/README
/usr/share/doc/librelp/gfdl.html
/usr/share/doc/librelp/relp.html
References
Summary
In this tutorial we learn how to install librelp
on Rocky Linux 8 using yum and dnf.