rbootd command not found

In this troubleshooting guide we learn how to fix rbootd command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

rbootd: command not found

or when using sudo you get the following error message

sudo: rbootd: command not found

Solutions to rbootd: command not found

How To Fix rbootd: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rbootd is provided by rbootd package.

rbootd is:

The rbootd daemon is used for booting some HP workstations over the network (such as the 9000/300 and 9000/400 series). It can also boot some PA RISC workstations (such as the 9000/730). It handles the first stage of the boot sequence and can be used to start booting Linux, NetBSD or HPUX.

To fix this problem, we can install more using the command below.

sudo apt-get -y install rbootd

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install rbootd.

sudo apt -y install rbootd

Or if you have aptitude installed you can use the following command.

sudo aptitude install rbootd

Summary

In this tutorial we learn how to fix rbootd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.