gfal_srm_ifce_version command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gfal_srm_ifce_version: command not found
or when using sudo you get the following error message
sudo: gfal_srm_ifce_version: command not found
Solutions to gfal_srm_ifce_version: command not found
How To Fix gfal_srm_ifce_version: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gfal_srm_ifce_version is provided by libgfal-srm-ifce1 package.
libgfal-srm-ifce1 is:
srm-ifce is a client side implementation of the SRMv1 and SRMv2 specification for GFAL1/2 and FTS. SRM means Storage Resource Manager Interface, it is a specification of a SOAP interface providing a generic way to manage distributed storage systems.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libgfal-srm-ifce1
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libgfal-srm-ifce1.
sudo apt -y install libgfal-srm-ifce1
Or if you have aptitude installed you can use the following command.
sudo aptitude install libgfal-srm-ifce1
Summary
In this tutorial we learn how to fix gfal_srm_ifce_version command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.