How To Install rlog on Fedora 34

rlog is Runtime Logging for C++ Runtime Logging for C++

Introduction

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

What is rlog

RLog provides a flexible message logging facility for C++ programs and libraries. It is meant to be fast enough to leave in production code. rlog 1.4 31.fc34 x86_64 41 k rlog-1.4-31.fc34.src.rpm fedora Runtime Logging for C++ http LGPLv2+ RLog provides a flexible message logging facility for C++ programs and libraries. It is meant to be fast enough to leave in production code.

We can use yum or dnf to install rlog on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install rlog.

Install rlog 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 rlog using dnf by running the following command:

sudo dnf -y install rlog

Install rlog 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 rlog using yum by running the following command:

sudo yum -y install rlog

How To Uninstall rlog on Fedora 34

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

sudo dnf remove rlog

rlog Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/db21c46f3c3f9501f4cd2df55bd6330ad5b2e8
/usr/lib/librlog.so.5
/usr/lib/librlog.so.5.0.0
/usr/share/doc/rlog
/usr/share/doc/rlog/AUTHORS
/usr/share/doc/rlog/COPYING
/usr/share/doc/rlog/README
/usr/lib/.build-id
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/b61933e0587f35ea6bf6da73a234b32bd6a334
/usr/lib64/librlog.so.5
/usr/lib64/librlog.so.5.0.0
/usr/share/doc/rlog
/usr/share/doc/rlog/AUTHORS
/usr/share/doc/rlog/COPYING
/usr/share/doc/rlog/README

References

Summary

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