How To Install morse on Ubuntu 18.04
Introduction
In this tutorial we learn how to install morse on Ubuntu 18.04.
What is morse
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.
There are three methods to install morse on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install morse Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install morse using apt-get by running the following command:
sudo apt-get -y install morse
Install morse Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install morse using apt by running the following command:
sudo apt -y install morse
Install morse Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install morse using aptitude by running the following command:
sudo aptitude -y install morse
How To Uninstall morse on Ubuntu 18.04
To uninstall only the morse package we can use the following command:
sudo apt-get remove morse
Uninstall morse And Its Dependencies
To uninstall morse and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove morse
Remove morse Configurations and Data
To remove morse configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge morse
Remove morse configuration, data, and all of its dependencies
We can use the following command to remove morse configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge morse
References
Summary
In this tutorial we learn how to install morse package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.