How To Install libtheora-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libtheora-devel on Rocky Linux 8.
What is libtheora-devel
The libtheora-devel package contains the header files needed to develop applications with libtheora.
We can use yum or dnf to install libtheora-devel on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libtheora-devel.
Install libtheora-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 libtheora-devel using dnf by running the following command:
sudo dnf -y install libtheora-devel
Install libtheora-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 libtheora-devel using yum by running the following command:
sudo yum -y install libtheora-devel
How To Uninstall libtheora-devel on Rocky Linux 8
To uninstall only the libtheora-devel package we can use the following command:
sudo dnf remove libtheora-devel
libtheora-devel Package Contents on Rocky Linux 8
/usr/include/theora
/usr/include/theora/codec.h
/usr/include/theora/theora.h
/usr/include/theora/theoradec.h
/usr/include/theora/theoraenc.h
/usr/lib/libtheora.so
/usr/lib/libtheoradec.so
/usr/lib/libtheoraenc.so
/usr/lib/pkgconfig/theora.pc
/usr/lib/pkgconfig/theoradec.pc
/usr/lib/pkgconfig/theoraenc.pc
/usr/include/theora
/usr/include/theora/codec.h
/usr/include/theora/theora.h
/usr/include/theora/theoradec.h
/usr/include/theora/theoraenc.h
/usr/lib64/libtheora.so
/usr/lib64/libtheoradec.so
/usr/lib64/libtheoraenc.so
/usr/lib64/pkgconfig/theora.pc
/usr/lib64/pkgconfig/theoradec.pc
/usr/lib64/pkgconfig/theoraenc.pc
References
Summary
In this tutorial we learn how to install libtheora-devel on Rocky Linux 8 using yum and dnf.