How To Install qpid-proton-cpp on Rocky Linux 8
Introduction
In this tutorial we learn how to install qpid-proton-cpp
on Rocky Linux 8.
What is qpid-proton-cpp
C++ libraries for Qpid Proton.
We can use yum
or dnf
to install qpid-proton-cpp
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install qpid-proton-cpp.
Install qpid-proton-cpp 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 qpid-proton-cpp
using dnf
by running the following command:
sudo dnf -y install qpid-proton-cpp
Install qpid-proton-cpp 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 qpid-proton-cpp
using yum
by running the following command:
sudo yum -y install qpid-proton-cpp
How To Uninstall qpid-proton-cpp on Rocky Linux 8
To uninstall only the qpid-proton-cpp
package we can use the following command:
sudo dnf remove qpid-proton-cpp
qpid-proton-cpp Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/bf0f20143ccec515e3ce4e7c9c87a8523ecbb2
/usr/lib64/libqpid-proton-cpp.so.12
/usr/lib64/libqpid-proton-cpp.so.12.9.0
/usr/share/proton
/usr/share/proton/README.md
References
Summary
In this tutorial we learn how to install qpid-proton-cpp
on Rocky Linux 8 using yum and dnf.