ib_acme command not found

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

Introduction

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

ib_acme: command not found

or when using sudo you get the following error message

sudo: ib_acme: command not found

Solutions to ib_acme: command not found

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

In Ubuntu ib_acme 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 ib_acme command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.