scsi_vendor command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
scsi_vendor: command not found
or when using sudo you get the following error message
sudo: scsi_vendor: command not found
Solutions to scsi_vendor: command not found
How To Fix scsi_vendor: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu scsi_vendor is provided by dds2tar package.
dds2tar is:
This tool makes use of the fast seek command of DAT devices. Files from a selected file archive can be extracted within one minute.
A script scsi_vendor is provided which may help in learning more about an unknown SCSI device. It is used by the mt-dds tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dds2tar
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dds2tar.
sudo apt -y install dds2tar
Or if you have aptitude installed you can use the following command.
sudo aptitude install dds2tar
Summary
In this tutorial we learn how to fix scsi_vendor command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.