gnuais command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnuais: command not found
or when using sudo you get the following error message
sudo: gnuais: command not found
Solutions to gnuais: command not found
How To Fix gnuais: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnuais is provided by gnuais package.
gnuais is:
A tool for demodulating and decoding Automatic Identification System messages using the line input of the sound card. AIS messages are transmitted by marine vessels and contain their position, velocity and other interesting information. The messages may be saved to a mysql-database, forwarded as NMEA packets or uploaded to an AIS web service.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnuais
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnuais.
sudo apt -y install gnuais
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnuais
Summary
In this tutorial we learn how to fix gnuais command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.