iscsiuio command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
iscsiuio: command not found
or when using sudo you get the following error message
sudo: iscsiuio: command not found
Solutions to iscsiuio: command not found
How To Fix iscsiuio: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu iscsiuio is provided by iscsiuio package.
iscsiuio is:
The Open-iSCSI project is a high-performance, transport independent, multi-platform implementation of RFC3720 iSCSI.
This tool is to be used in conjunction with the QLogic NetXtreme II Linux driver (Kernel module name: ‘bnx2’ and ‘bnx2x’), QLogic CNIC driver, and the QLogic iSCSI driver (Kernel module name: ‘bnx2i’).
This user space tool is used in conjunction with the following QLogic Network Controllers: bnx2: BCM5706, BCM5708, BCM5709 devices bnx2x: BCM57710, BCM57711, BCM57711E, BCM57712, BCM57712E, BCM57800, BCM57810, BCM57840 devices
This utility will provide the ARP and DHCP functionality for the iSCSI offload. The communication to the driver is done via Userspace I/O (Kernel module name ‘uio’).
This package is required to offload iSCSI onto these devices.
To fix this problem, we can install more using the command below.
sudo apt-get -y install iscsiuio
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install iscsiuio.
sudo apt -y install iscsiuio
Or if you have aptitude installed you can use the following command.
sudo aptitude install iscsiuio
Summary
In this tutorial we learn how to fix iscsiuio command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.