inb command not found
In this troubleshooting guide we learn how to fix inb command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
inb: command not found
or when using sudo you get the following error message
sudo: inb: command not found
Solutions to inb: command not found
How To Fix inb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu inb is provided by ioport package.
ioport is:
This package provides tools to read and wrote to the I/O ports of PC hardware directly from a script or a command line: inb, inw, inl, outb, outw and outl.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ioport
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ioport.
sudo apt -y install ioport
Or if you have aptitude installed you can use the following command.
sudo aptitude install ioport
Summary
In this tutorial we learn how to fix inb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.