rpc.rwalld command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rpc.rwalld: command not found
or when using sudo you get the following error message
sudo: rpc.rwalld: command not found
Solutions to rpc.rwalld: command not found
How To Fix rpc.rwalld: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rpc.rwalld is provided by rwalld package.
rwalld is:
rpc.rwalld is a server which will send a message to users currently logged in to the system. This server invokes the wall(1) command to actually write the messages to the system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rwalld
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rwalld.
sudo apt -y install rwalld
Or if you have aptitude installed you can use the following command.
sudo aptitude install rwalld
Summary
In this tutorial we learn how to fix rpc.rwalld command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.