How To Install freedv on Fedora 34

freedv is FreeDV Digital Voice

Introduction

In this tutorial we learn how to install freedv on Fedora 34.

What is freedv

FreeDV is a GUI application for Windows and Linux that allows any SSB radio to be used for low bit rate digital voice. Speech is compressed down to 1400 bit/s then modulated onto a 1100 Hz wide QPSK signal which is sent to the Mic input of a SSB radio. On receive, the signal is received by the SSB radio, then demodulated and decoded by FreeDV. FreeDV was built by an international team of Radio Amateurs working together on coding, design, user interface and testing. FreeDV is open source software, released under the GNU Public License version 2.1. The FDMDV modem and Codec 2 Speech codec used in FreeDV are also open source.

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

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

sudo dnf -y install freedv

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

sudo yum -y install freedv

How To Uninstall freedv on Fedora 34

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

sudo dnf remove freedv

freedv Package Contents on Fedora 34

/usr/bin/freedv
/usr/lib/.build-id
/usr/lib/.build-id/40
/usr/lib/.build-id/40/efcb619d4df517ccfad8f6e2ce6d0524b30972
/usr/share/appdata/freedv.appdata.xml
/usr/share/applications/freedv.desktop
/usr/share/doc/freedv
/usr/share/doc/freedv/README.md
/usr/share/doc/freedv/USER_MANUAL.md
/usr/share/icons/hicolor/128x128/apps/freedv.png
/usr/share/icons/hicolor/256x256/apps/freedv.png
/usr/share/icons/hicolor/48x48/apps/freedv.png
/usr/share/icons/hicolor/64x64/apps/freedv.png
/usr/share/licenses/freedv
/usr/share/licenses/freedv/COPYING

References

Summary

In this tutorial we learn how to install freedv on Fedora 34 using yum and dnf.