xdemorse command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xdemorse: command not found
or when using sudo you get the following error message
sudo: xdemorse: command not found
Solutions to xdemorse: command not found
How To Fix xdemorse: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xdemorse is provided by xdemorse package.
xdemorse is:
X/GTK+ application for decoding Morse code signals into text. xdemorse 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 algorithm 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 Text viewer.
xdemorse has a certain level of tolerance towards operator errors (bad “fist”) regarding deviation from the standard duration of the various elements that make up the Morse code.There is a “Waterfall” (audio spectrum) display derived from an integer-arithmetic FFT of the receiver’s audio output.
This program has built-in CAT capability but only for the Yaesu FT847 or FT857 and Elecraft K2 or K3.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xdemorse
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xdemorse.
sudo apt -y install xdemorse
Or if you have aptitude installed you can use the following command.
sudo aptitude install xdemorse
Summary
In this tutorial we learn how to fix xdemorse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.