How To Install fuseiso9660 on Ubuntu 22.04

In this tutorial we learn how to install fuseiso9660 on Ubuntu 22.04. fuseiso9660 is File System in User Space - Module for ISO9660

Introduction

In this tutorial we learn how to install fuseiso9660 on Ubuntu 22.04.

What is fuseiso9660

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.

There are three methods to install fuseiso9660 on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install fuseiso9660 Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install fuseiso9660 using apt-get by running the following command:

sudo apt-get -y install fuseiso9660

Install fuseiso9660 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install fuseiso9660 using apt by running the following command:

sudo apt -y install fuseiso9660

Install fuseiso9660 Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install fuseiso9660 using aptitude by running the following command:

sudo aptitude -y install fuseiso9660

How To Uninstall fuseiso9660 on Ubuntu 22.04

To uninstall only the fuseiso9660 package we can use the following command:

sudo apt-get remove fuseiso9660

Uninstall fuseiso9660 And Its Dependencies

To uninstall fuseiso9660 and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove fuseiso9660

Remove fuseiso9660 Configurations and Data

To remove fuseiso9660 configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge fuseiso9660

Remove fuseiso9660 configuration, data, and all of its dependencies

We can use the following command to remove fuseiso9660 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge fuseiso9660

References

Summary

In this tutorial we learn how to install fuseiso9660 package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.