This simple and brief tutorial will show you how to mount ISO file in Ubuntu using command mount with or without root privilege. Mo...
Mount ISO with root in Command Line
1.Open a terminal by pressing Ctl+Alt+t
2.Mount the iso file to your /mnt directory with below command(Verify your /mnt is empty)
ls /mnt sudo mount my.iso /mnt |
sudo umount /mnt |
Mount ISO file without root (regular user)
1.Install fuseiso use below command in your terminal
sudo apt-get install fuseiso |
sudo chmod +r /etc/fuse.conf |
mkdir test fuseiso my.iso test |
fusermount -u test |
Mount ISO file via GUI
You can install gisomount to your ubuntu then you can mount ISO file from GUI ,and access it use file browser such as Nautilus
1.Install gisomount use below command
sudo apt-get install gisomount |
3.Then you can mount ISO file use gISOmount and access it via your file browser