How To Install fcoe-utils on Rocky Linux 8

In this tutorial we learn how to install fcoe-utils on Rocky Linux 8. fcoe-utils is Fibre Channel over Ethernet utilities

Introduction

In this tutorial we learn how to install fcoe-utils on Rocky Linux 8.

What is fcoe-utils

Fibre Channel over Ethernet utilities fcoeadm - command line tool for configuring FCoE interfaces fcoemon - service to configure DCB Ethernet QOS filters, works with lldpad

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

Install fcoe-utils 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 fcoe-utils using dnf by running the following command:

sudo dnf -y install fcoe-utils

Install fcoe-utils 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 fcoe-utils using yum by running the following command:

sudo yum -y install fcoe-utils

How To Uninstall fcoe-utils on Rocky Linux 8

To uninstall only the fcoe-utils package we can use the following command:

sudo dnf remove fcoe-utils

fcoe-utils Package Contents on Rocky Linux 8

/etc/fcoe
/etc/fcoe/cfg-ethx
/etc/sysconfig/fcoe
/usr/lib/.build-id
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/d5d6b7623a39ccb8d77420799ff188209bc150
/usr/lib/.build-id/12
/usr/lib/.build-id/12/0582d84e7924687fde550ec061cdc2bf7b3d9f
/usr/lib/.build-id/19
/usr/lib/.build-id/19/ea289f0dbbd42ea51304b7af9f7a6b632ac494
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/26300942484f01269c843519f4c52512a7fcb7
/usr/lib/.build-id/8e/c3a04a774f674485bfdcebabb0fb6b4a09562e
/usr/lib/.build-id/a4
/usr/lib/.build-id/a4/be4f34ee6de223cb020f97d0697472945c4522
/usr/lib/systemd/system/fcoe.service
/usr/libexec/fcoe
/usr/libexec/fcoe/dcbcheck.sh
/usr/libexec/fcoe/fcc.sh
/usr/libexec/fcoe/fcoe-setup.sh
/usr/libexec/fcoe/fcoe_edd.sh
/usr/libexec/fcoe/fcoedump.sh
/usr/sbin/fcnsq
/usr/sbin/fcoeadm
/usr/sbin/fcoemon
/usr/sbin/fcping
/usr/sbin/fcrls
/usr/sbin/fipvlan
/usr/share/bash-completion/completions/fcoeadm
/usr/share/bash-completion/completions/fcoemon
/usr/share/doc/fcoe-utils
/usr/share/doc/fcoe-utils/COPYING
/usr/share/doc/fcoe-utils/QUICKSTART
/usr/share/doc/fcoe-utils/README
/usr/share/doc/fcoe-utils/quickstart.txt
/usr/share/man/man8/fcnsq.8.gz
/usr/share/man/man8/fcoeadm.8.gz
/usr/share/man/man8/fcoemon.8.gz
/usr/share/man/man8/fcping.8.gz
/usr/share/man/man8/fcrls.8.gz
/usr/share/man/man8/fipvlan.8.gz

References

Summary

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