How To Install libunicap-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libunicap-devel
on Rocky Linux 8.
What is libunicap-devel
The libunicap-devel package includes header files and libraries necessary for for developing programs which use the unicap library. It contains the API documentation of the library, too.
We can use yum
or dnf
to install libunicap-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libunicap-devel.
Install libunicap-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 libunicap-devel
using dnf
by running the following command:
sudo dnf -y install libunicap-devel
Install libunicap-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 libunicap-devel
using yum
by running the following command:
sudo yum -y install libunicap-devel
How To Uninstall libunicap-devel on Rocky Linux 8
To uninstall only the libunicap-devel
package we can use the following command:
sudo dnf remove libunicap-devel
libunicap-devel Package Contents on Rocky Linux 8
/usr/include/unicap
/usr/include/unicap/unicap.h
/usr/include/unicap/unicap_status.h
/usr/include/unicap/unicap_version.h
/usr/lib/libunicap.so
/usr/lib/pkgconfig/libunicap.pc
/usr/share/gtk-doc/html/libunicap
/usr/share/gtk-doc/html/libunicap/ch01.html
/usr/share/gtk-doc/html/libunicap/home.png
/usr/share/gtk-doc/html/libunicap/index.html
/usr/share/gtk-doc/html/libunicap/left-insensitive.png
/usr/share/gtk-doc/html/libunicap/left.png
/usr/share/gtk-doc/html/libunicap/libunicap-unicap.html
/usr/share/gtk-doc/html/libunicap/libunicap.devhelp2
/usr/share/gtk-doc/html/libunicap/right-insensitive.png
/usr/share/gtk-doc/html/libunicap/right.png
/usr/share/gtk-doc/html/libunicap/style.css
/usr/share/gtk-doc/html/libunicap/up-insensitive.png
/usr/share/gtk-doc/html/libunicap/up.png
/usr/include/unicap
/usr/include/unicap/unicap.h
/usr/include/unicap/unicap_status.h
/usr/include/unicap/unicap_version.h
/usr/lib64/libunicap.so
/usr/lib64/pkgconfig/libunicap.pc
/usr/share/gtk-doc/html/libunicap
/usr/share/gtk-doc/html/libunicap/ch01.html
/usr/share/gtk-doc/html/libunicap/home.png
/usr/share/gtk-doc/html/libunicap/index.html
/usr/share/gtk-doc/html/libunicap/left-insensitive.png
/usr/share/gtk-doc/html/libunicap/left.png
/usr/share/gtk-doc/html/libunicap/libunicap-unicap.html
/usr/share/gtk-doc/html/libunicap/libunicap.devhelp2
/usr/share/gtk-doc/html/libunicap/right-insensitive.png
/usr/share/gtk-doc/html/libunicap/right.png
/usr/share/gtk-doc/html/libunicap/style.css
/usr/share/gtk-doc/html/libunicap/up-insensitive.png
/usr/share/gtk-doc/html/libunicap/up.png
References
Summary
In this tutorial we learn how to install libunicap-devel
on Rocky Linux 8 using yum and dnf.