How To Install lsscsi on CentOS 7

In this tutorial we learn how to install lsscsi on CentOS 7. lsscsi is List SCSI devices (or hosts) and associated information

Introduction

In this tutorial we learn how to install lsscsi on CentOS 7.

What is lsscsi

Uses information provided by the sysfs pseudo file system in Linux kernel 2.6 series to list SCSI devices or all SCSI hosts. Includes a “classic” option to mimic the output of “cat /proc/scsi/scsi” that has been widely used prior to the lk 2.6 series. Author ——– Doug Gilbert <dgilbert(at)interlog(dot)com>

We can use yum or dnf to install lsscsi on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install lsscsi.

Install lsscsi on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install lsscsi using yum by running the following command:

sudo yum -y install lsscsi

Install lsscsi on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install lsscsi using dnf by running the following command:

sudo dnf -y install lsscsi

How To Uninstall lsscsi on CentOS 7

To uninstall only the lsscsi package we can use the following command:

sudo dnf remove lsscsi

References

Summary

In this tutorial we learn how to install lsscsi on CentOS 7 using yum and dnf.