How To Install furiusisomount on Debian 10
Introduction
In this tutorial we learn how to install furiusisomount
on Debian 10.
What is furiusisomount
furiusisomount is:
Furius ISO Mount is a simple application for mounting ISO, IMG, BIN, MDF and NG image files even without burning them to disk.
It provides the following features:
- Automatically Mounts ISO, IMG, BIN, MDF and NRG image files.
- Automatically creates a mount point in your home directory.
- Automatically Unmounts the Image files.
- Automatically removes the mount directory to return your home directory to its previous state.
- Automatically saves the history of the last 10 images mounted.
- Mounts multiple images.
- Burn ISO and IMG Files to optical disk.
- Generate Md5 and SHA1 checksums.
- Automatically retrieves any previously unmounted images.
- Automatically generates a log file of all commands needed to mount and unmount images manually.
There are three methods to install furiusisomount
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install furiusisomount Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install furiusisomount
using apt-get
by running the following command:
sudo apt-get -y install furiusisomount
Install furiusisomount Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install furiusisomount
using apt
by running the following command:
sudo apt -y install furiusisomount
Install furiusisomount 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install furiusisomount
using aptitude
by running the following command:
sudo aptitude -y install furiusisomount
How To Uninstall furiusisomount on Debian 10
To uninstall only the furiusisomount
package we can use the following command:
sudo apt-get remove furiusisomount
Uninstall furiusisomount And Its Dependencies
To uninstall furiusisomount
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove furiusisomount
Remove furiusisomount Configurations and Data
To remove furiusisomount
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge furiusisomount
Remove furiusisomount configuration, data, and all of its dependencies
We can use the following command to remove furiusisomount
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge furiusisomount
Dependencies
furiusisomount have the following dependencies:
References
Summary
In this tutorial we learn how to install furiusisomount
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.