obexfs command not found

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

Introduction

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

obexfs: command not found

or when using sudo you get the following error message

sudo: obexfs: command not found

Solutions to obexfs: command not found

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

In Ubuntu obexfs is provided by obexfs package.

obexfs is:

ObexFS uses FUSE to mount filesystems of ObexFTP capable devices either manually or in autofs style mode. It can handle all devices that the obexftp package can handle, connected via serial cable, IrDA, bluetooth or USB.

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

sudo apt-get -y install obexfs

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

You can also use apt command to install obexfs.

sudo apt -y install obexfs

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

sudo aptitude install obexfs

Summary

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