dpt-i2o-raidutil command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dpt-i2o-raidutil: command not found
or when using sudo you get the following error message
sudo: dpt-i2o-raidutil: command not found
Solutions to dpt-i2o-raidutil: command not found
How To Fix dpt-i2o-raidutil: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dpt-i2o-raidutil is provided by dpt-i2o-raidutils package.
dpt-i2o-raidutils is:
Suite of programs to manage some I2O-compliant RAID controllers; in particular some Adaptec hardware; to be very specific those using the dpt_i2o kernel module or CONFIG_SCSI_DPT_I2O driver, or (for more recent kernels) the i2o_block and i2o_config modules, or CONFIG_I2O_BLOCK and CONFIG_I2O_CONFIG drivers. One can create/delete a RAID array, add/remove a hot spare drive to/from an array, activate/silence the alarm, and query array/disk status.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dpt-i2o-raidutils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dpt-i2o-raidutils.
sudo apt -y install dpt-i2o-raidutils
Or if you have aptitude installed you can use the following command.
sudo aptitude install dpt-i2o-raidutils
Summary
In this tutorial we learn how to fix dpt-i2o-raidutil command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.