inxi command not found

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

Introduction

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

inxi: command not found

or when using sudo you get the following error message

sudo: inxi: command not found

Solutions to inxi: command not found

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

In Ubuntu inxi is provided by inxi package.

inxi is:

Inxi is a system information script that can display various things about your hardware and software to users in an IRC chatroom or support forum. It runs with the /exec command in most IRC clients.

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

sudo apt-get -y install inxi

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

You can also use apt command to install inxi.

sudo apt -y install inxi

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

sudo aptitude install inxi

Summary

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