How To Install libvorbis on CentOS 8
Introduction
In this tutorial we learn how to install libvorbis
on CentOS 8.
What is libvorbis
Ogg Vorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed and variable bitrates. The libvorbis package contains runtime libraries for use in programs that support Ogg Vorbis. libvorbis 1 1.3.6 2.el8 x86_64 196 k libvorbis-1.3.6-2.el8.src.rpm appstream The Vorbis General Audio Compression Codec https BSD Ogg Vorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed and variable bitrates. The libvorbis package contains runtime libraries for use in programs that support Ogg Vorbis.
We can use yum
or dnf
to install libvorbis
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install libvorbis.
Install libvorbis on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install libvorbis
using dnf
by running the following command:
sudo dnf -y install libvorbis
Install libvorbis on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install libvorbis
using yum
by running the following command:
sudo yum -y install libvorbis
How To Uninstall libvorbis on CentOS 8
To uninstall only the libvorbis
package we can use the following command:
sudo dnf remove libvorbis
libvorbis Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/14
/usr/lib/.build-id/14/50db13c45b4a7bd1efd494c26729e7bb84fcbc
/usr/lib/.build-id/e0
/usr/lib/.build-id/e0/e2427f6a0a1dc66ef4cae2389969cdf007c1a0
/usr/lib/.build-id/f2
/usr/lib/.build-id/f2/869ca86c31795edb4dd0df29b2b1b206ec2282
/usr/lib/libvorbis.so.0
/usr/lib/libvorbis.so.0.4.8
/usr/lib/libvorbisenc.so.2
/usr/lib/libvorbisenc.so.2.0.11
/usr/lib/libvorbisfile.so.3
/usr/lib/libvorbisfile.so.3.3.7
/usr/share/doc/libvorbis
/usr/share/doc/libvorbis/AUTHORS
/usr/share/licenses/libvorbis
/usr/share/licenses/libvorbis/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/58
/usr/lib/.build-id/58/60b3f0cbbf7eb4663e795927286b5897bee849
/usr/lib/.build-id/73
/usr/lib/.build-id/73/c7f38c07df20d75abf920e9dd330d602dd55c7
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/726ac43273539b07c5331b67a44503cd37cf3e
/usr/lib64/libvorbis.so.0
/usr/lib64/libvorbis.so.0.4.8
/usr/lib64/libvorbisenc.so.2
/usr/lib64/libvorbisenc.so.2.0.11
/usr/lib64/libvorbisfile.so.3
/usr/lib64/libvorbisfile.so.3.3.7
/usr/share/doc/libvorbis
/usr/share/doc/libvorbis/AUTHORS
/usr/share/licenses/libvorbis
/usr/share/licenses/libvorbis/COPYING
References
- [libvorbis website](https://www.xiph.org/ https://www.xiph.org/)
Summary
In this tutorial we learn how to install libvorbis
on CentOS 8 using yum and dnf.