fuseiso9660 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fuseiso9660: command not found
or when using sudo you get the following error message
sudo: fuseiso9660: command not found
Solutions to fuseiso9660: command not found
How To Fix fuseiso9660: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fuseiso9660 is provided by fuseiso9660 package.
fuseiso9660 is:
This module for the FUSE kernel service allows any FUSE-enabled user to mount ISO9660 file systems, e.g. CDROM disk images.
The module has been initially written for UMView, the user-mode implementation of View-OS. If you want to allow completely user-mode disk images mounting (with no kernel/superuser support at all), take a look at umview-mod-umfuseiso9660 and its dependencies.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fuseiso9660
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fuseiso9660.
sudo apt -y install fuseiso9660
Or if you have aptitude installed you can use the following command.
sudo aptitude install fuseiso9660
Summary
In this tutorial we learn how to fix fuseiso9660 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.