fcoeadm command not found

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

Introduction

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

fcoeadm: command not found

or when using sudo you get the following error message

sudo: fcoeadm: command not found

Solutions to fcoeadm: command not found

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

In Ubuntu fcoeadm is provided by fcoe-utils package.

fcoe-utils is:

This package allows users to use Fibre Channel over Ethernet. It contains: fcoeadm - command line tool for configuring FCoE interfaces fcoemon - service to configure DCB Ethernet QOS filters, works with dcbd

To fix this problem, we can install more using the command below.

sudo apt-get -y install fcoe-utils

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install fcoe-utils.

sudo apt -y install fcoe-utils

Or if you have aptitude installed you can use the following command.

sudo aptitude install fcoe-utils

Summary

In this tutorial we learn how to fix fcoeadm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.