sshoot command not found

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

Introduction

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

sshoot: command not found

or when using sudo you get the following error message

sudo: sshoot: command not found

Solutions to sshoot: command not found

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

In Ubuntu sshoot is provided by sshoot package.

sshoot is:

Command-line interface to manage multiple sshuttle VPN sessions.

sshuttle creates a VPN connection from your machine to any remote server that you can connect to via ssh.

sshoot allows one to define multiple VPN sessions using sshuttle and start/stop them as needed.

It supports configuration options for most of sshuttle’s features, providing flexible configuration for profiles.

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

sudo apt-get -y install sshoot

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

You can also use apt command to install sshoot.

sudo apt -y install sshoot

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

sudo aptitude install sshoot

Summary

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