hpilo_cli command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hpilo_cli: command not found
or when using sudo you get the following error message
sudo: hpilo_cli: command not found
Solutions to hpilo_cli: command not found
How To Fix hpilo_cli: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hpilo_cli is provided by python3-hpilo package.
python3-hpilo is:
This module will make it easy for you to access the Integrated Lights Out management interface of your HP hardware. It supports RILOE II, iLO, iLO 2, iLO 3 and iLO 4. It uses the XML interface or hponcfg to access and change the iLO.
This package contains the Python 3 version of hpilo.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-hpilo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-hpilo.
sudo apt -y install python3-hpilo
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-hpilo
Summary
In this tutorial we learn how to fix hpilo_cli command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.