How To Install qpid-proton-c-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install qpid-proton-c-devel
on Rocky Linux 8.
What is qpid-proton-c-devel
Development libraries for writing messaging apps with Qpid Proton.
We can use yum
or dnf
to install qpid-proton-c-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install qpid-proton-c-devel.
Install qpid-proton-c-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 qpid-proton-c-devel
using dnf
by running the following command:
sudo dnf -y install qpid-proton-c-devel
Install qpid-proton-c-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 qpid-proton-c-devel
using yum
by running the following command:
sudo yum -y install qpid-proton-c-devel
How To Uninstall qpid-proton-c-devel on Rocky Linux 8
To uninstall only the qpid-proton-c-devel
package we can use the following command:
sudo dnf remove qpid-proton-c-devel
qpid-proton-c-devel Package Contents on Rocky Linux 8
/usr/include/proton
/usr/include/proton/cid.h
/usr/include/proton/codec
/usr/include/proton/codec.h
/usr/include/proton/condition.h
/usr/include/proton/connection.h
/usr/include/proton/connection_driver.h
/usr/include/proton/cproton.i
/usr/include/proton/delivery.h
/usr/include/proton/disposition.h
/usr/include/proton/engine.h
/usr/include/proton/error.h
/usr/include/proton/event.h
/usr/include/proton/handlers.h
/usr/include/proton/import_export.h
/usr/include/proton/internal
/usr/include/proton/io
/usr/include/proton/link.h
/usr/include/proton/listener.h
/usr/include/proton/log.h
/usr/include/proton/logger.h
/usr/include/proton/message.h
/usr/include/proton/messenger.h
/usr/include/proton/netaddr.h
/usr/include/proton/object.h
/usr/include/proton/proactor.h
/usr/include/proton/raw_connection.h
/usr/include/proton/reactor.h
/usr/include/proton/sasl.h
/usr/include/proton/sasl_plugin.h
/usr/include/proton/selectable.h
/usr/include/proton/session.h
/usr/include/proton/ssl.h
/usr/include/proton/terminus.h
/usr/include/proton/transport.h
/usr/include/proton/type_compat.h
/usr/include/proton/types.h
/usr/include/proton/url.h
/usr/include/proton/version.h
/usr/lib64/cmake/Proton
/usr/lib64/cmake/Proton/ProtonConfig.cmake
/usr/lib64/cmake/Proton/ProtonConfigVersion.cmake
/usr/lib64/libqpid-proton-core.so
/usr/lib64/libqpid-proton-proactor.so
/usr/lib64/libqpid-proton.so
/usr/lib64/pkgconfig/libqpid-proton-core.pc
/usr/lib64/pkgconfig/libqpid-proton-proactor.pc
/usr/lib64/pkgconfig/libqpid-proton.pc
References
Summary
In this tutorial we learn how to install qpid-proton-c-devel
on Rocky Linux 8 using yum and dnf.