httppower command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
httppower: command not found
or when using sudo you get the following error message
sudo: httppower: command not found
Solutions to httppower: command not found
How To Fix httppower: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu httppower is provided by powerman package.
powerman is:
PowerMan is a tool for manipulating Power Distribution Units (PDUs) from a central location. It is suitable for remote operation in data centers or compute cluster environment.
Several RPC varieties are supported natively by PowerMan and Expect-like configurability simplifies the addition of new devices.
This package contains the core system, and includes support for Genders, HTTP devices and NCurses user interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install powerman
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install powerman.
sudo apt -y install powerman
Or if you have aptitude installed you can use the following command.
sudo aptitude install powerman
Summary
In this tutorial we learn how to fix httppower command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.