sudoers-add command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sudoers-add: command not found
or when using sudo you get the following error message
sudo: sudoers-add: command not found
Solutions to sudoers-add: command not found
How To Fix sudoers-add: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sudoers-add is provided by sshuttle package.
sshuttle is:
Sshuttle makes it possible to access remote networks using SSH. It creates a transparent proxy server, using iptables, that will forward all the traffic through an SSH tunnel to a remote copy of sshuttle.
It does not require installation on the remote server, which just needs to have Python installed.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sshuttle
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sshuttle.
sudo apt -y install sshuttle
Or if you have aptitude installed you can use the following command.
sudo aptitude install sshuttle
Summary
In this tutorial we learn how to fix sudoers-add command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.