fastd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fastd: command not found
or when using sudo you get the following error message
sudo: fastd: command not found
Solutions to fastd: command not found
How To Fix fastd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fastd is provided by fastd package.
fastd is:
A VPN daemon that has many features of OpenVPN and Tinc and is optimized for small code size and small number of dependencies. Fastd became popular on small devices like routers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fastd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fastd.
sudo apt -y install fastd
Or if you have aptitude installed you can use the following command.
sudo aptitude install fastd
Summary
In this tutorial we learn how to fix fastd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.