rusers command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rusers: command not found
or when using sudo you get the following error message
sudo: rusers: command not found
Solutions to rusers: command not found
How To Fix rusers: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rusers is provided by rusers package.
rusers is:
The rusers command produces output similar to who, but for the list of hosts or all machines on the local network. For each host responding to the rusers query, the hostname with the names of the users currently logged on is printed on each line. The rusers command will wait for one minute to catch late responders.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rusers
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rusers.
sudo apt -y install rusers
Or if you have aptitude installed you can use the following command.
sudo aptitude install rusers
Summary
In this tutorial we learn how to fix rusers command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.