How To Install libqb on Rocky Linux 8
Introduction
In this tutorial we learn how to install libqb on Rocky Linux 8.
What is libqb
libqb provides high-performance, reusable features for client-server architecture, such as logging, tracing, inter-process communication (IPC), and polling.
We can use yum or dnf to install libqb on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libqb.
Install libqb 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 libqb using dnf by running the following command:
sudo dnf -y install libqb
Install libqb 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 libqb using yum by running the following command:
sudo yum -y install libqb
How To Uninstall libqb on Rocky Linux 8
To uninstall only the libqb package we can use the following command:
sudo dnf remove libqb
libqb Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/1a
/usr/lib/.build-id/1a/a5d4d743137180de3619d1eaf3afd22c297dba
/usr/lib/.build-id/82
/usr/lib/.build-id/82/745e94c3fbc192e367dcd979586860c55eaf93
/usr/lib64/libqb.so.0
/usr/lib64/libqb.so.0.19.0
/usr/sbin/qb-blackbox
/usr/share/licenses/libqb
/usr/share/licenses/libqb/COPYING
/usr/share/man/man8/qb-blackbox.8.gz
/usr/lib/.build-id
/usr/lib/.build-id/82
/usr/lib/.build-id/82/3ddabdf3f9be3fa692a8832fb09e7a150fbf21
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/261d6d88a5a5e2bc9ec847e6345ae19b37787a
/usr/lib/libqb.so.0
/usr/lib/libqb.so.0.19.0
/usr/sbin/qb-blackbox
/usr/share/licenses/libqb
/usr/share/licenses/libqb/COPYING
/usr/share/man/man8/qb-blackbox.8.gz
References
Summary
In this tutorial we learn how to install libqb on Rocky Linux 8 using yum and dnf.