uanytun command not found

In this troubleshooting guide we learn how to fix uanytun command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

uanytun: command not found

or when using sudo you get the following error message

sudo: uanytun: command not found

Solutions to uanytun: command not found

How To Fix uanytun: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu uanytun is provided by uanytun package.

uanytun is:

uAnytun is a tiny implementation of SATP (Secure Anycast Tunneling Protocol). Unlike Anytun which is a full featured implementation uAnytun has no support for multiple connections or synchronisation. It is a small single threaded implementation intended to act as a client on small platforms. SATP defines a protocol used for communication between any combination of unicast and anycast tunnel endpoints. It has less protocol overhead than IPSec in Tunnel mode and allows tunneling of every ETHER TYPE protocol (e.g. ethernet, ip, arp …). SATP directly includes cryptography and message authentication based on the methodes used by SRTP (Secure Real-time Transport Protocol). It is intended to deliver a generic, scalable and secure solution for tunneling and relaying of packets of any protocol.

To fix this problem, we can install more using the command below.

sudo apt-get -y install uanytun

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install uanytun.

sudo apt -y install uanytun

Or if you have aptitude installed you can use the following command.

sudo aptitude install uanytun

Summary

In this tutorial we learn how to fix uanytun command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.