in.aspd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
in.aspd: command not found
or when using sudo you get the following error message
sudo: in.aspd: command not found
Solutions to in.aspd: command not found
How To Fix in.aspd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu in.aspd is provided by asp package.
asp is:
Asp discovers the present ip address of a host that has a dynamically assigned ip-address. This is useful when you want to connect to dynamic hosts, or to help others find you (in which case you run asp as a server).
To fix this problem, we can install more using the command below.
sudo apt-get -y install asp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install asp.
sudo apt -y install asp
Or if you have aptitude installed you can use the following command.
sudo aptitude install asp
Summary
In this tutorial we learn how to fix in.aspd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.