How To Install flxmlrpc on CentOS 7

In this tutorial we learn how to install flxmlrpc on CentOS 7. flxmlrpc is An xmlrpc library for the NBEMS suite of programs

Introduction

In this tutorial we learn how to install flxmlrpc on CentOS 7.

What is flxmlrpc

This is version 0.1.4 of flxmlrpc, an implementation of the XmlRpc protocol written in C++, based upon XmlRpc++0.7 and modified to provide additional XmlRpc Variable types. It is used in fldigi, flrig, flnet, flmsg, flarq, flamp, fllog; a suite of programs written for amateur radio emergency communications. flxmlrpc is designed to make it easy to incorporate xmlrpc client and server support into C++ applications. Or use both client and server objects in your application for easy peer-to-peer support.

We can use yum or dnf to install flxmlrpc on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install flxmlrpc.

Install flxmlrpc on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install flxmlrpc using yum by running the following command:

sudo yum -y install flxmlrpc

Install flxmlrpc on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install flxmlrpc using dnf by running the following command:

sudo dnf -y install flxmlrpc

How To Uninstall flxmlrpc on CentOS 7

To uninstall only the flxmlrpc package we can use the following command:

sudo dnf remove flxmlrpc

References

Summary

In this tutorial we learn how to install flxmlrpc on CentOS 7 using yum and dnf.