ISO image can be mounted just like any device or file system, and here is how...
Create a mount point for the ISO:
BASH# mkdir /media/iso
Now mount the ISO in the mount point with the following command:
BASH# mount myiso.iso /media/iso/ -t iso9660 -o ro,loop=/dev/loop0
Where myiso.iso is your ISO file.
What I haven't tried yet is omitting the ro (read only) option, so that it might be possible to make changes to the ISO before finally burning, not sure if this works (will check) but the command would probably look like this:
BASH# mount myiso.iso /media/iso/ -t iso9660 -o loop=/dev/loop0
Have fun!
source: here
How to mount an ISO image in Linux
febrero 11, 2007Maldito Nerd ... xD
marzo 14, 2006Montar carpetas compartidas
febrero 24, 2006
//nombre_de_PC/Carpeta_compartida /media/comp smbfs user,auto,guest 0 0
pero si la carpeta esta protegida con contraseña donde dice user,auto,guest cambiarlo por username=usuario,password=el_que_sea,auto y funciona tambien...
gracias sambita








