zfcp_show command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zfcp_show: command not found
or when using sudo you get the following error message
sudo: zfcp_show: command not found
Solutions to zfcp_show: command not found
How To Fix zfcp_show: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zfcp_show is provided by zfcp-hbaapi-utils package.
zfcp-hbaapi-utils is:
The zfcp device driver is a FCP device driver for the Linux on System z. This package implements FC-HBA API for the zfcp device driver.
This package contains zfcp_ping and zfcp_show utilities.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zfcp-hbaapi-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zfcp-hbaapi-utils.
sudo apt -y install zfcp-hbaapi-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install zfcp-hbaapi-utils
Summary
In this tutorial we learn how to fix zfcp_show command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.