How To Install linsim on Fedora 34
Introduction
In this tutorial we learn how to install linsim
on Fedora 34.
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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install linsim.
Install linsim on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install linsim
using dnf
by running the following command:
sudo dnf -y install linsim
Install linsim on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install linsim
using yum
by running the following command:
sudo yum -y install linsim
How To Uninstall linsim on Fedora 34
To uninstall only the linsim
package we can use the following command:
sudo dnf remove linsim
linsim Package Contents on Fedora 34
/usr/bin/linsim
/usr/lib/.build-id
/usr/lib/.build-id/a0
/usr/lib/.build-id/a0/3766832f30758609b7b930126355eaffbabd17
/usr/share/applications/linsim.desktop
/usr/share/doc/linsim
/usr/share/doc/linsim/AUTHORS
/usr/share/doc/linsim/ChangeLog
/usr/share/doc/linsim/README
/usr/share/licenses/linsim
/usr/share/licenses/linsim/COPYING
/usr/share/metainfo/linsim.appdata.xml
/usr/share/pixmaps/linsim.xpm
References
Summary
In this tutorial we learn how to install linsim
on Fedora 34 using yum and dnf.