pdudaemon command not found

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

Introduction

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

pdudaemon: command not found

or when using sudo you get the following error message

sudo: pdudaemon: command not found

Solutions to pdudaemon: command not found

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

In Ubuntu pdudaemon is provided by pdudaemon package.

pdudaemon is:

Pdudaemon provides a standard way of controlling power controllers, which can either be local devices or networked PDUs. On top of that it ensures the control commands to the PDU are executed sequentially to avoid issues with many PDUs in handling multiple parallel requests.

This package provides the daemon

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

sudo apt-get -y install pdudaemon

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

You can also use apt command to install pdudaemon.

sudo apt -y install pdudaemon

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

sudo aptitude install pdudaemon

Summary

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