How To Install libucil on Rocky Linux 8
Introduction
In this tutorial we learn how to install libucil
on Rocky Linux 8.
What is libucil
Unicap provides a uniform interface to video capture devices. It allows applications to use any supported video capture device via a single API. The related ucil library provides easy to use functions to render text and graphic overlays onto video images.
We can use yum
or dnf
to install libucil
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libucil.
Install libucil 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 libucil
using dnf
by running the following command:
sudo dnf -y install libucil
Install libucil 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 libucil
using yum
by running the following command:
sudo yum -y install libucil
How To Uninstall libucil on Rocky Linux 8
To uninstall only the libucil
package we can use the following command:
sudo dnf remove libucil
libucil Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/20
/usr/lib/.build-id/20/223875c438499cf4f36448682cace5b72a1a17
/usr/lib64/libucil.so.2
/usr/lib64/libucil.so.2.4.0
/usr/share/doc/libucil
/usr/share/doc/libucil/AUTHORS
/usr/share/doc/libucil/COPYING
/usr/share/doc/libucil/ChangeLog
/usr/share/doc/libucil/README
/usr/lib/.build-id
/usr/lib/.build-id/73
/usr/lib/.build-id/73/cbf4290ca4a55c03950293b9793463dc4307c1
/usr/lib/libucil.so.2
/usr/lib/libucil.so.2.4.0
/usr/share/doc/libucil
/usr/share/doc/libucil/AUTHORS
/usr/share/doc/libucil/COPYING
/usr/share/doc/libucil/ChangeLog
/usr/share/doc/libucil/README
References
Summary
In this tutorial we learn how to install libucil
on Rocky Linux 8 using yum and dnf.