radmrouted command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
radmrouted: command not found
or when using sudo you get the following error message
sudo: radmrouted: command not found
Solutions to radmrouted: command not found
How To Fix radmrouted: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu radmrouted is provided by librad0-tools package.
librad0-tools is:
radlib is a C language library developed to abstract details of interprocess communications and common linux/unix system facilities so that application developers can concentrate on application solutions. It encourages developers (whether expert or novice) to use a proven paradigm of event-driven, asynchronous design. By abstracting interprocess messaging, events, timers, and any I/O device that can be represented as a file descriptor, radlib simplifies the implementation of multi-purpose processes, as well as multi- process applications.
This is a package containing some tools.
To fix this problem, we can install more using the command below.
sudo apt-get -y install librad0-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install librad0-tools.
sudo apt -y install librad0-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install librad0-tools
Summary
In this tutorial we learn how to fix radmrouted command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.