How To Install libvorbis-devel on Rocky Linux 8

In this tutorial we learn how to install libvorbis-devel on Rocky Linux 8. libvorbis-devel is Development tools for Vorbis applications

Introduction

In this tutorial we learn how to install libvorbis-devel on Rocky Linux 8.

What is libvorbis-devel

The libvorbis-devel package contains the header files and documentation needed to develop applications with Ogg Vorbis.

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

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

sudo dnf -y install libvorbis-devel

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

sudo yum -y install libvorbis-devel

How To Uninstall libvorbis-devel on Rocky Linux 8

To uninstall only the libvorbis-devel package we can use the following command:

sudo dnf remove libvorbis-devel

libvorbis-devel Package Contents on Rocky Linux 8

/usr/include/vorbis
/usr/include/vorbis/codec.h
/usr/include/vorbis/vorbisenc.h
/usr/include/vorbis/vorbisfile.h
/usr/lib/libvorbis.so
/usr/lib/libvorbisenc.so
/usr/lib/libvorbisfile.so
/usr/lib/pkgconfig/vorbis.pc
/usr/lib/pkgconfig/vorbisenc.pc
/usr/lib/pkgconfig/vorbisfile.pc
/usr/share/aclocal/vorbis.m4
/usr/include/vorbis
/usr/include/vorbis/codec.h
/usr/include/vorbis/vorbisenc.h
/usr/include/vorbis/vorbisfile.h
/usr/lib64/libvorbis.so
/usr/lib64/libvorbisenc.so
/usr/lib64/libvorbisfile.so
/usr/lib64/pkgconfig/vorbis.pc
/usr/lib64/pkgconfig/vorbisenc.pc
/usr/lib64/pkgconfig/vorbisfile.pc
/usr/share/aclocal/vorbis.m4

References

Summary

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