How To Install fllog on CentOS 7

In this tutorial we learn how to install fllog on CentOS 7. fllog is Amateur Radio Log Program

Introduction

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

What is fllog

Fllog is a transceiver control program for Amateur Radio use. It does not use any 3rd party transceiver control libraries. It is a c++ pro- gram that encapsulates each transceiver in its own class. Where ever possible the transceiver class(s) use polymorphism to reuse code that is portable across a series of transceivers.

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

Install fllog on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install fllog

Install fllog 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 fllog using dnf by running the following command:

sudo dnf -y install fllog

How To Uninstall fllog on CentOS 7

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

sudo dnf remove fllog

References

Summary

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