How To Install flnet on CentOS 7
Introduction
In this tutorial we learn how to install flnet
on CentOS 7.
What is flnet
Net provides the Amateur Radio Net Control Station operator with a real time tool to assist him or her in managing the net activities. A single screen with multiple windows is used to allow rapid entry, search, pick and display of all stations calling in to the net. All operations on the main screen are accomplished with keyboard entries only. No mouse action is required to perform the net control functions. Experience has shown that most net control operators prefer this method of operation to improve the speed of entry and selection.
We can use yum
or dnf
to install flnet
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install flnet.
Install flnet on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install flnet
using yum
by running the following command:
sudo yum -y install flnet
Install flnet 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 flnet
using dnf
by running the following command:
sudo dnf -y install flnet
How To Uninstall flnet on CentOS 7
To uninstall only the flnet
package we can use the following command:
sudo dnf remove flnet
References
Summary
In this tutorial we learn how to install flnet
on CentOS 7 using yum
and dnf
.