rwhod command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rwhod: command not found
or when using sudo you get the following error message
sudo: rwhod: command not found
Solutions to rwhod: command not found
How To Fix rwhod: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rwhod is provided by rwhod package.
rwhod is:
Rwhod is the server which maintains the database used by the rwho(1) and ruptime(1) programs. Its operation is predicated on the ability to broadcast messages on a network.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rwhod
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rwhod.
sudo apt -y install rwhod
Or if you have aptitude installed you can use the following command.
sudo aptitude install rwhod
Summary
In this tutorial we learn how to fix rwhod command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.