How To Install fuseiso9660 on Kali Linux
Introduction
In this tutorial we learn how to install fuseiso9660 on Kali Linux.
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 Kali Linux. 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 updateAfter updating apt database, We can install fuseiso9660 using apt-get by running the following command:
sudo apt-get -y install fuseiso9660Install fuseiso9660 Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install fuseiso9660 using apt by running the following command:
sudo apt -y install fuseiso9660Install fuseiso9660 Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install fuseiso9660 using aptitude by running the following command:
sudo aptitude -y install fuseiso9660How To Uninstall fuseiso9660 on Kali Linux
To uninstall only the fuseiso9660 package we can use the following command:
sudo apt-get remove fuseiso9660Uninstall fuseiso9660 And Its Dependencies
To uninstall fuseiso9660 and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fuseiso9660Remove fuseiso9660 Configurations and Data
To remove fuseiso9660 configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fuseiso9660Remove 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 fuseiso9660Dependencies
fuseiso9660 have the following dependencies:
References
Summary
In this tutorial we learn how to install fuseiso9660 package on Kali Linux using different package management tools: apt, apt-get and aptitude.