powerdebug command not found

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

Introduction

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

powerdebug: command not found

or when using sudo you get the following error message

sudo: powerdebug: command not found

Solutions to powerdebug: command not found

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

In Ubuntu powerdebug is provided by powerdebug package.

powerdebug is:

PowerDebug is a tool to display regulator, sensor and clock information. Data is refreshed every few seconds. There is also dump option to display the information just once.

Tool is mostly useful on non-x86 platforms.

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

sudo apt-get -y install powerdebug

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

You can also use apt command to install powerdebug.

sudo apt -y install powerdebug

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

sudo aptitude install powerdebug

Summary

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