How To Install xmlrpc-c-c++ on Rocky Linux 8
Introduction
In this tutorial we learn how to install xmlrpc-c-c++
on Rocky Linux 8.
What is xmlrpc-c-c++
XML-RPC is a quick-and-easy way to make procedure calls over the Internet. It converts the procedure call into XML document, sends it to a remote server using HTTP, and gets back the response as XML. This library provides a modular implementation of XML-RPC for C++.
We can use yum
or dnf
to install xmlrpc-c-c++
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install xmlrpc-c-c++.
Install xmlrpc-c-c++ 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 xmlrpc-c-c++
using dnf
by running the following command:
sudo dnf -y install xmlrpc-c-c++
Install xmlrpc-c-c++ 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 xmlrpc-c-c++
using yum
by running the following command:
sudo yum -y install xmlrpc-c-c++
How To Uninstall xmlrpc-c-c++ on Rocky Linux 8
To uninstall only the xmlrpc-c-c++
package we can use the following command:
sudo dnf remove xmlrpc-c-c++
xmlrpc-c-c++ Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/aa0ba5b4cadc70cf47bac9dc0042fc5358b21a
/usr/lib/.build-id/10
/usr/lib/.build-id/10/9d7511585e2ec5e090b3652b23e78fbc225061
/usr/lib/.build-id/26
/usr/lib/.build-id/26/3f6af5beee8d2d282e4ee32d1edbbb0e1d54ca
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/1905ee2972dab55a2db0ea95378d3cab70ead1
/usr/lib/.build-id/39
/usr/lib/.build-id/39/4e13367c74514c3178fd06b1ac94b2e8cec44a
/usr/lib/.build-id/3f
/usr/lib/.build-id/3f/5fc18efbfc2b0753c42403f1a6ca9e6b7cc9c5
/usr/lib/.build-id/56
/usr/lib/.build-id/56/b01d842fe4da617daee689259ec150189aeab2
/usr/lib/.build-id/8c
/usr/lib/.build-id/8c/d6b096bb2990f553ab4d6d3c4fc7cb558a9c7b
/usr/lib/.build-id/d5
/usr/lib/.build-id/d5/2008de9d2ffa7cfa6b9ef0f074a2e09d36f0cd
/usr/lib/libxmlrpc++.so.8
/usr/lib/libxmlrpc++.so.8.51
/usr/lib/libxmlrpc_abyss++.so.8
/usr/lib/libxmlrpc_abyss++.so.8.51
/usr/lib/libxmlrpc_cpp.so.8
/usr/lib/libxmlrpc_cpp.so.8.51
/usr/lib/libxmlrpc_packetsocket.so.8
/usr/lib/libxmlrpc_packetsocket.so.8.51
/usr/lib/libxmlrpc_server++.so.8
/usr/lib/libxmlrpc_server++.so.8.51
/usr/lib/libxmlrpc_server_abyss++.so.8
/usr/lib/libxmlrpc_server_abyss++.so.8.51
/usr/lib/libxmlrpc_server_cgi++.so.8
/usr/lib/libxmlrpc_server_cgi++.so.8.51
/usr/lib/libxmlrpc_server_pstream++.so.8
/usr/lib/libxmlrpc_server_pstream++.so.8.51
/usr/lib/libxmlrpc_util++.so.8
/usr/lib/libxmlrpc_util++.so.8.51
/usr/lib/.build-id
/usr/lib/.build-id/55
/usr/lib/.build-id/55/cae5fb3abe801a119c35fbe6ad71b669e0ce31
/usr/lib/.build-id/56
/usr/lib/.build-id/56/bc5bcc6a828f3627f68f82ba62bf1784570353
/usr/lib/.build-id/64
/usr/lib/.build-id/64/86098f4349464115bd9e07eabc3073932b719e
/usr/lib/.build-id/79
/usr/lib/.build-id/79/84da673fede52d6701a4807aabc81222c082d4
/usr/lib/.build-id/86
/usr/lib/.build-id/86/f55601835814806ec7645283076cde0cd31540
/usr/lib/.build-id/b4
/usr/lib/.build-id/b4/09001fb06fc10260efcb3e3fe7d0f27d854f52
/usr/lib/.build-id/c9
/usr/lib/.build-id/c9/01db6b6a3713596dd569ccd1f8fec302981bce
/usr/lib/.build-id/db
/usr/lib/.build-id/db/ba30e223b51921b55a5fe3ea283def4f61495d
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/c1cf58f12b89af29b19d85a587b7c5ff59e2ad
/usr/lib64/libxmlrpc++.so.8
/usr/lib64/libxmlrpc++.so.8.51
/usr/lib64/libxmlrpc_abyss++.so.8
/usr/lib64/libxmlrpc_abyss++.so.8.51
/usr/lib64/libxmlrpc_cpp.so.8
/usr/lib64/libxmlrpc_cpp.so.8.51
/usr/lib64/libxmlrpc_packetsocket.so.8
/usr/lib64/libxmlrpc_packetsocket.so.8.51
/usr/lib64/libxmlrpc_server++.so.8
/usr/lib64/libxmlrpc_server++.so.8.51
/usr/lib64/libxmlrpc_server_abyss++.so.8
/usr/lib64/libxmlrpc_server_abyss++.so.8.51
/usr/lib64/libxmlrpc_server_cgi++.so.8
/usr/lib64/libxmlrpc_server_cgi++.so.8.51
/usr/lib64/libxmlrpc_server_pstream++.so.8
/usr/lib64/libxmlrpc_server_pstream++.so.8.51
/usr/lib64/libxmlrpc_util++.so.8
/usr/lib64/libxmlrpc_util++.so.8.51
References
Summary
In this tutorial we learn how to install xmlrpc-c-c++
on Rocky Linux 8 using yum and dnf.