linpac command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
linpac: command not found
or when using sudo you get the following error message
sudo: linpac: command not found
Solutions to linpac: command not found
How To Fix linpac: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu linpac is provided by linpac package.
linpac is:
LinPac is an application for the AX.25 packet radio environment. It comes with a mail client.
Linpac is an attempt to create a packet radio terminal for Linux that allows wide configurability and easy addition of new functions and special functions needed by the user.
To fix this problem, we can install more using the command below.
sudo apt-get -y install linpac
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install linpac.
sudo apt -y install linpac
Or if you have aptitude installed you can use the following command.
sudo aptitude install linpac
Summary
In this tutorial we learn how to fix linpac command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.