morseOSS command not found

In this troubleshooting guide we learn how to fix morseOSS command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

morseOSS: command not found

or when using sudo you get the following error message

sudo: morseOSS: command not found

Solutions to morseOSS: command not found

How To Fix morseOSS: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu morseOSS 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 morseOSS command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.