edge command not found
In this troubleshooting guide we learn how to fix edge command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
edge: command not found
or when using sudo you get the following error message
sudo: edge: command not found
Solutions to edge: command not found
How To Fix edge: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu edge is provided by n2n package.
n2n is:
n2n is an open source VPN application which utilizes a Peer-to-peer architecture for network membership and routing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install n2n
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install n2n.
sudo apt -y install n2n
Or if you have aptitude installed you can use the following command.
sudo aptitude install n2n
Summary
In this tutorial we learn how to fix edge command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.