ibacm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ibacm: command not found
or when using sudo you get the following error message
sudo: ibacm: command not found
Solutions to ibacm: command not found
How To Fix ibacm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ibacm is provided by ibacm package.
ibacm is:
The IB ACM implements and provides a framework for name, address, and route (path) resolution services over InfiniBand. It is intended to address connection setup scalability issues running MPI applications on large clusters. The IB ACM provides information needed to establish a connection, but does not implement the CM protocol. A primary user of the ibacm service is the librdmacm library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ibacm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ibacm.
sudo apt -y install ibacm
Or if you have aptitude installed you can use the following command.
sudo aptitude install ibacm
Summary
In this tutorial we learn how to fix ibacm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.