srp_daemon command not found

In this troubleshooting guide we learn how to fix srp_daemon command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

srp_daemon: command not found

or when using sudo you get the following error message

sudo: srp_daemon: command not found

Solutions to srp_daemon: command not found

How To Fix srp_daemon: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu srp_daemon is provided by srptools package.

srptools is:

In conjunction with the kernel ib_srp driver, srptools allows you to discover and use Infiniband attached storage devices which use the SCSI RDMA Protocol (SRP).

To fix this problem, we can install more using the command below.

sudo apt-get -y install srptools

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install srptools.

sudo apt -y install srptools

Or if you have aptitude installed you can use the following command.

sudo aptitude install srptools

Summary

In this tutorial we learn how to fix srp_daemon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.