fi_info command not found

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

Introduction

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

fi_info: command not found

or when using sudo you get the following error message

sudo: fi_info: command not found

Solutions to fi_info: command not found

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

In Ubuntu fi_info is provided by libfabric-bin package.

libfabric-bin is:

Libfabric is a communication library that exports interfaces for fabric services to applications. Libfabric is the core component of the Open Fabrics Interfaces (OFI) framework.

This package contains a few programs to check the status of the fabric.

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

sudo apt-get -y install libfabric-bin

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

You can also use apt command to install libfabric-bin.

sudo apt -y install libfabric-bin

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

sudo aptitude install libfabric-bin

Summary

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