How To Install libtheora on Rocky Linux 8
Introduction
In this tutorial we learn how to install libtheora
on Rocky Linux 8.
What is libtheora
Theora is Xiph.Org’s first publicly released video codec, intended for use within the Ogg’s project’s Ogg multimedia streaming system. Theora is derived directly from On2’s VP3 codec; Currently the two are nearly identical, varying only in encapsulating decoder tables in the bitstream headers, but Theora will make use of this extra freedom in the future to improve over what is possible with VP3.
We can use yum
or dnf
to install libtheora
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libtheora.
Install libtheora 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
using dnf
by running the following command:
sudo dnf -y install libtheora
Install libtheora 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
using yum
by running the following command:
sudo yum -y install libtheora
How To Uninstall libtheora on Rocky Linux 8
To uninstall only the libtheora
package we can use the following command:
sudo dnf remove libtheora
libtheora Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/3a
/usr/lib/.build-id/3a/eaaba1c0b215e4eaa54bf37d7222c0b5779f56
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/085ea598b6d2b8e1042f506efebbc1b8ff8a86
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/24df208fc4b83e193c91ec4d5caaf13f8e10c6
/usr/lib64/libtheora.so.0
/usr/lib64/libtheora.so.0.3.10
/usr/lib64/libtheoradec.so.1
/usr/lib64/libtheoradec.so.1.1.4
/usr/lib64/libtheoraenc.so.1
/usr/lib64/libtheoraenc.so.1.1.2
/usr/share/doc/libtheora
/usr/share/doc/libtheora/COPYING
/usr/share/doc/libtheora/README
/usr/lib/.build-id
/usr/lib/.build-id/54
/usr/lib/.build-id/54/60e085ddeaccee57ecfd41993e5da8a97d1e01
/usr/lib/.build-id/c9
/usr/lib/.build-id/c9/c5fd64566279cd4c809f9df0288c4874de64c8
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/3304ad5b52cd9e258fa18714930149865cb348
/usr/lib/libtheora.so.0
/usr/lib/libtheora.so.0.3.10
/usr/lib/libtheoradec.so.1
/usr/lib/libtheoradec.so.1.1.4
/usr/lib/libtheoraenc.so.1
/usr/lib/libtheoraenc.so.1.1.2
/usr/share/doc/libtheora
/usr/share/doc/libtheora/COPYING
/usr/share/doc/libtheora/README
References
Summary
In this tutorial we learn how to install libtheora
on Rocky Linux 8 using yum and dnf.