How To Install linsim on CentOS 7

In this tutorial we learn how to install linsim on CentOS 7. linsim is Tool for Amateur Radio Digital Mode evaluation

Introduction

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

What is linsim

Linsim is designed to read and then add path simulation to any monophonic wav file recorded at any sampling rate. It works particularly well with files that were created using fldigi’s audio capture and audio generate functions. The entire wav file will be saved to computer memory and then duplicated during the signal processing. The user should try to keep the length of the wav file at 20 Mg or less, but the author has tested some 200 Mg files on both Linux and Windows-8 without causing a program fault. These files were original VOAR broadcasts of about 30 minutes duration. The objective of this type of simulation is to finally measure the character error rate (CER) and bit error rate (BER) of a specific modem type and decoder design. For most modems a sequence of 1000 characters provides a sufficient level of confidence in the CER measurment.

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

Install linsim on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install linsim

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

sudo dnf -y install linsim

How To Uninstall linsim on CentOS 7

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

sudo dnf remove linsim

References

Summary

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