How to mount an ISO image in Linux

febrero 11, 2007
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

Maldito Nerd ... xD

marzo 14, 2006
No esperaba tener este ecore...

I am nerdier than 96% of all people. Are you nerdier? Click here to find out!

Montar carpetas compartidas

febrero 24, 2006
samba
Donde trabajo la mayoria tiene winbugs, me tope con la necesidad de acceder a sus carpetas compartidas, para ello apelando al buen Samba pude hacerlo, basta un simple $ smbclient -N -L (nombre_de_PC) me mostro las carpetas compartidas, para tenerlo montado siempre los puse en el /etc/fstab , agregue una linea como:

//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