fcrls command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fcrls: command not found
or when using sudo you get the following error message
sudo: fcrls: command not found
Solutions to fcrls: command not found
How To Fix fcrls: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fcrls 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 fcrls command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.