How To Install libquvi on Rocky Linux 8
Introduction
In this tutorial we learn how to install libquvi
on Rocky Linux 8.
What is libquvi
Libquvi is a cross-platform library for parsing flash media stream URLs with C API.
We can use yum
or dnf
to install libquvi
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libquvi.
Install libquvi 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 libquvi
using dnf
by running the following command:
sudo dnf -y install libquvi
Install libquvi 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 libquvi
using yum
by running the following command:
sudo yum -y install libquvi
How To Uninstall libquvi on Rocky Linux 8
To uninstall only the libquvi
package we can use the following command:
sudo dnf remove libquvi
libquvi Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/b8
/usr/lib/.build-id/b8/6c71c4567398bef243066fb60fbfdd60bf7191
/usr/lib64/libquvi-0.9-0.9.4.so
/usr/share/doc/libquvi
/usr/share/doc/libquvi/AUTHORS
/usr/share/doc/libquvi/COPYING
/usr/share/doc/libquvi/ChangeLog
/usr/share/doc/libquvi/README
/usr/share/man/man3/libquvi.3.gz
/usr/lib/.build-id
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/8174ef340dbe8fe64b5ad3d147a9342427d52f
/usr/lib/libquvi-0.9-0.9.4.so
/usr/share/doc/libquvi
/usr/share/doc/libquvi/AUTHORS
/usr/share/doc/libquvi/COPYING
/usr/share/doc/libquvi/ChangeLog
/usr/share/doc/libquvi/README
/usr/share/man/man3/libquvi.3.gz
References
Summary
In this tutorial we learn how to install libquvi
on Rocky Linux 8 using yum and dnf.