webfsd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
webfsd: command not found
or when using sudo you get the following error message
sudo: webfsd: command not found
Solutions to webfsd: command not found
How To Fix webfsd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu webfsd is provided by webfs package.
webfs is:
This package provides a simple web server for mostly static content, with limited CGI support (GET requests only).
Example uses include giving HTTP access to the contents of an FTP site, or exporting some files by quickly starting a web server without any need to edit configuration files first.
To fix this problem, we can install more using the command below.
sudo apt-get -y install webfs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install webfs.
sudo apt -y install webfs
Or if you have aptitude installed you can use the following command.
sudo aptitude install webfs
Summary
In this tutorial we learn how to fix webfsd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.