kcptun-client command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kcptun-client: command not found
or when using sudo you get the following error message
sudo: kcptun-client: command not found
Solutions to kcptun-client: command not found
How To Fix kcptun-client: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kcptun-client is provided by kcptun package.
kcptun is:
kcptun is a remote port forwarding tool by converting TCP stream into UDP stream in KCP protocol, in order to achieve higher throughput or lower latency with rich tuneable options.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kcptun
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kcptun.
sudo apt -y install kcptun
Or if you have aptitude installed you can use the following command.
sudo aptitude install kcptun
Summary
In this tutorial we learn how to fix kcptun-client command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.