How To Install libteam on Rocky Linux 8

In this tutorial we learn how to install libteam on Rocky Linux 8. libteam is Library for controlling team network device

Introduction

In this tutorial we learn how to install libteam on Rocky Linux 8.

What is libteam

This package contains a library which is a user-space counterpart for team network driver. It provides an API to control team network devices.

We can use yum or dnf to install libteam on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libteam.

Install libteam on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install libteam using dnf by running the following command:

sudo dnf -y install libteam

Install libteam on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install libteam using yum by running the following command:

sudo yum -y install libteam

How To Uninstall libteam on Rocky Linux 8

To uninstall only the libteam package we can use the following command:

sudo dnf remove libteam

libteam Package Contents on Rocky Linux 8

/usr/bin/teamnl
/usr/lib/.build-id
/usr/lib/.build-id/20
/usr/lib/.build-id/20/832d3cb0747684f303390c3f283c623a81e149
/usr/lib/.build-id/44
/usr/lib/.build-id/44/7a0e6b3aba0e50f66b619d9182fb7629874e12
/usr/lib/libteam.so.5
/usr/lib/libteam.so.5.6.1
/usr/share/doc/libteam
/usr/share/doc/libteam/COPYING
/usr/share/man/man8/teamnl.8.gz
/usr/bin/teamnl
/usr/lib/.build-id
/usr/lib/.build-id/42
/usr/lib/.build-id/42/edecd60d3484863514c9c9956ff2e5379e9b83
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/90fbe768d3846115e8b30a222859bf31b7c2fe
/usr/lib64/libteam.so.5
/usr/lib64/libteam.so.5.6.1
/usr/share/doc/libteam
/usr/share/doc/libteam/COPYING
/usr/share/man/man8/teamnl.8.gz

References

Summary

In this tutorial we learn how to install libteam on Rocky Linux 8 using yum and dnf.