How To Install ibacm on Fedora 36
Introduction
In this tutorial we learn how to install ibacm
on Fedora 36.
What is ibacm
The ibacm daemon helps reduce the load of managing path record lookups on large InfiniBand fabrics by providing a user space implementation of what is functionally similar to an ARP cache. The use of ibacm, when properly configured, can reduce the SA packet load of a large IB cluster from O(n^2) to O(n). The ibacm daemon is started and normally runs in the background, user applications need not know about this daemon as long as their app uses librdmacm to handle connection bring up/tear down. The librdmacm library knows how to talk directly to the ibacm daemon to retrieve data.
We can use yum
or dnf
to install ibacm
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ibacm.
Install ibacm on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install ibacm
using dnf
by running the following command:
sudo dnf -y install ibacm
Install ibacm on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install ibacm
using yum
by running the following command:
sudo yum -y install ibacm
How To Uninstall ibacm on Fedora 36
To uninstall only the ibacm
package we can use the following command:
sudo dnf remove ibacm
ibacm Package Contents on Fedora 36
/etc/rdma/ibacm_opts.cfg
/usr/bin/ib_acme
/usr/lib/.build-id
/usr/lib/.build-id/33
/usr/lib/.build-id/33/76d8aa3f666fba58342030d45a2c6465e3607e
/usr/lib/.build-id/71
/usr/lib/.build-id/71/3cf5eb412c29f1b0e208dcf1f37e08c5e441a8
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/0bc8dc905281d818be3bb4f01f61cbabadee60
/usr/lib/systemd/system/ibacm.service
/usr/lib/systemd/system/ibacm.socket
/usr/lib64/ibacm
/usr/lib64/ibacm/libibacmp.so
/usr/sbin/ibacm
/usr/share/doc/rdma-core/ibacm.md
/usr/share/man/man1/ib_acme.1.gz
/usr/share/man/man7/ibacm.7.gz
/usr/share/man/man7/ibacm_prov.7.gz
/usr/share/man/man8/ibacm.8.gz
References
Summary
In this tutorial we learn how to install ibacm
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).