morse-x command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
morse-x: command not found
or when using sudo you get the following error message
sudo: morse-x: command not found
Solutions to morse-x: command not found
How To Fix morse-x: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu morse-x is provided by morse-x package.
morse-x is:
morse-x offers you a window to put dits and daws into - by pressing any key (except q = quit). On the console it prints each character you morsed in. (So start it in an x-terminal-emulator.) On the first execution you have to calibrate the length of dits and daws, so just follow the instructions on the console.
To fix this problem, we can install more using the command below.
sudo apt-get -y install morse-x
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install morse-x.
sudo apt -y install morse-x
Or if you have aptitude installed you can use the following command.
sudo aptitude install morse-x
Summary
In this tutorial we learn how to fix morse-x command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.