How To Install demorse on Fedora 34
Introduction
In this tutorial we learn how to install demorse
on Fedora 34.
What is demorse
demorse is a non-interactive command line tool for decoding Morse code signals into text. demorse detects the “dihs” and “dahs” that make a Morse code character via the computer’s sound card, which can be connected to a radio receiver tuned to a CW Morse code transmission or to a tone generator. The input signal is processed by a Goertzel tone detector which produces “mark” or “space” (signal/no signal) outputs and the resulting stream of Morse code “elements” is decoded into an ASCII character for printing to the screen. Currently demorse is a non- interactive command line tool for the console and decoded Morse signals are sent to stdout.
We can use yum
or dnf
to install demorse
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install demorse.
Install demorse 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 demorse
using dnf
by running the following command:
sudo dnf -y install demorse
Install demorse 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 demorse
using yum
by running the following command:
sudo yum -y install demorse
How To Uninstall demorse on Fedora 34
To uninstall only the demorse
package we can use the following command:
sudo dnf remove demorse
demorse Package Contents on Fedora 34
/usr/bin/demorse
/usr/lib/.build-id
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/930d7525920707dcc8bec05a96d2bc3a602891
/usr/share/doc/demorse
/usr/share/doc/demorse/AUTHORS
/usr/share/doc/demorse/COPYING
/usr/share/doc/demorse/Morsecode.txt
/usr/share/doc/demorse/README
/usr/share/doc/demorse/demorse.html
References
Summary
In this tutorial we learn how to install demorse
on Fedora 34 using yum and dnf.