ethersrv-linux command not found

In this troubleshooting guide we learn how to fix ethersrv-linux command not found error message

Introduction

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

ethersrv-linux: command not found

or when using sudo you get the following error message

sudo: ethersrv-linux: command not found

Solutions to ethersrv-linux: command not found

How To Fix ethersrv-linux: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ethersrv-linux is provided by etherdfs-server package.

etherdfs-server is:

EtherDFS is a DOS installable filesystem, mapping a DOS drive letter to a remote share. This package contains the server side of EtherDFS, a daemon exporting one or more directories for remote access by the EtherDFS DOS TSR.

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

sudo apt-get -y install etherdfs-server

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

You can also use apt command to install etherdfs-server.

sudo apt -y install etherdfs-server

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

sudo aptitude install etherdfs-server

Summary

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