How To Install libogg on Rocky Linux 8

In this tutorial we learn how to install libogg on Rocky Linux 8. libogg is The Ogg bitstream file format library

Introduction

In this tutorial we learn how to install libogg on Rocky Linux 8.

What is libogg

Libogg is a library for manipulating Ogg bitstream file formats. Libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams.

We can use yum or dnf to install libogg on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libogg.

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

sudo dnf -y install libogg

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

sudo yum -y install libogg

How To Uninstall libogg on Rocky Linux 8

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

sudo dnf remove libogg

libogg Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/60
/usr/lib/.build-id/60/46af23064bc7291894f7ae5b40020296989614
/usr/lib/libogg.so.0
/usr/lib/libogg.so.0.8.2
/usr/share/doc/libogg
/usr/share/doc/libogg/AUTHORS
/usr/share/doc/libogg/CHANGES
/usr/share/doc/libogg/COPYING
/usr/share/doc/libogg/README
/usr/lib/.build-id
/usr/lib/.build-id/79
/usr/lib/.build-id/79/2fc68bdd77620429509f684cf489cf3c5640d5
/usr/lib64/libogg.so.0
/usr/lib64/libogg.so.0.8.2
/usr/share/doc/libogg
/usr/share/doc/libogg/AUTHORS
/usr/share/doc/libogg/CHANGES
/usr/share/doc/libogg/COPYING
/usr/share/doc/libogg/README

References

Summary

In this tutorial we learn how to install libogg on Rocky Linux 8 using yum and dnf.