ilorest command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ilorest: command not found
or when using sudo you get the following error message
sudo: ilorest: command not found
Solutions to ilorest: command not found
How To Fix ilorest: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ilorest is provided by ilorest package.
ilorest is:
The Redfish Utility is a command line interface that allows one to manage servers that take advantage of Redfish APIs. In addition to using the utility manually to execute individual commands, you can create scripts to automate tasks.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ilorest
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ilorest.
sudo apt -y install ilorest
Or if you have aptitude installed you can use the following command.
sudo aptitude install ilorest
Summary
In this tutorial we learn how to fix ilorest command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.