You need
- Your Terminal Emulator (konsole, gnome-terminal..etc)
- Root Permissions
- A little knowledge how to use the Terminal (cd, ls)
1) Open a Terminal and switch to root by typing:
Some distros don't support sudo / or you might not be in the /etc/sudoers file, if that's the case just use:Code:sudo -i
You'll be aasked for your password (sudo) / the root's password (su)Code:su
2) navigate to the location of your iso (using cd).
Then type:
(Of course you have to replace YourISOFile.iso with the filename of your iso)Code:mkdir -p /mnt/iso && mount -o loop YourISOFile.iso /mnt/iso
Your iso is now mounted at /media/iso
3) If you don't need your iso file any more just unmount it like that:
Hope this helps.umount /mnt/iso && rm -r /mnt/iso