isnsdd command not found

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

Introduction

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

isnsdd: command not found

or when using sudo you get the following error message

sudo: isnsdd: command not found

Solutions to isnsdd: command not found

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

In Ubuntu isnsdd is provided by open-isns-discoveryd package.

open-isns-discoveryd is:

Open-iSNS is an implementation of the Internet Storage Name Service (iSNS), according to RFC 4171, which facilitates automated discovery, management, and configuration of iSCSI and Fibre Channel devices on a TCP/IP network.

This package contains the isnsdd discovery daemon, handling all the server communications required to register a node, its portals, and to maintain the registration. In addition, it uses the iSNS State Change Notification framework to learn of new targets or initiators coming online and informs local services (such as the iSCSI initiator daemon) about these changes.

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

sudo apt-get -y install open-isns-discoveryd

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

You can also use apt command to install open-isns-discoveryd.

sudo apt -y install open-isns-discoveryd

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

sudo aptitude install open-isns-discoveryd

Summary

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