flmsg command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
flmsg: command not found
or when using sudo you get the following error message
sudo: flmsg: command not found
Solutions to flmsg: command not found
How To Fix flmsg: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu flmsg is provided by flmsg package.
flmsg is:
Flmsg is a simple forms management editor for the amateur radio supported standard message formats, including ICS, HICS, MARS, IARU, Radiogram NTS, Red Cross, and plaintext. It’s data files are pure ASCII text that can be sent from point to point using the internet, amateur radio, or other electronic link.
To fix this problem, we can install more using the command below.
sudo apt-get -y install flmsg
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install flmsg.
sudo apt -y install flmsg
Or if you have aptitude installed you can use the following command.
sudo aptitude install flmsg
Summary
In this tutorial we learn how to fix flmsg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.