morseALSA command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
morseALSA: command not found
or when using sudo you get the following error message
sudo: morseALSA: command not found
Solutions to morseALSA: command not found
How To Fix morseALSA: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu morseALSA is provided by morse package.
morse is:
It can generate random tests or simulated QSOs resembling those used in the ARRL test (a QSO generator is included). There are a plethora of options to vary the training method. In one of the simpler modes, this program will take text from standard input and render it as Morse-code beeps.
To fix this problem, we can install more using the command below.
sudo apt-get -y install morse
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install morse.
sudo apt -y install morse
Or if you have aptitude installed you can use the following command.
sudo aptitude install morse
Summary
In this tutorial we learn how to fix morseALSA command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.