vtund command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
vtund: command not found
or when using sudo you get the following error message
sudo: vtund: command not found
Solutions to vtund: command not found
How To Fix vtund: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vtund is provided by vtun package.
vtun is:
VTun is the easiest way to create virtual tunnels over TCP/IP networks with traffic shaping and compression.
It supports IP, PPP, SLIP, Ethernet and other tunnel types.
VTun is easily and highly configurable, it can be used for various network tasks.
VTun requires the universal TUN/TAP kernel module which can be found at http://vtun.sourceforge.net/tun/index.html or in the 2.4 and newer Linux kernels.
Note: This program includes an “encryption” feature intended to protect the tunneled data as it travels across the network. However, the protocol it uses is known to be very insecure, and you should not rely on it to deter anyone but a casual eavesdropper. See the included README.Encryption file for more information.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vtun
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vtun.
sudo apt -y install vtun
Or if you have aptitude installed you can use the following command.
sudo aptitude install vtun
Summary
In this tutorial we learn how to fix vtund command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.