httpdirfs command not found

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

Introduction

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

httpdirfs: command not found

or when using sudo you get the following error message

sudo: httpdirfs: command not found

Solutions to httpdirfs: command not found

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

In Ubuntu httpdirfs is provided by httpdirfs package.

httpdirfs is:

httpdirfs is program that can be used to mount HTTP directory listings (generated using an Apache DirectoryIndex, for example) as a virtual filesystem through the FUSE interface. It supports HTTP basic authentication.

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

sudo apt-get -y install httpdirfs

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

You can also use apt command to install httpdirfs.

sudo apt -y install httpdirfs

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

sudo aptitude install httpdirfs

Summary

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