Aca transcribo un mensage de esta lista de un tiempo atras Saludos
From: Pablo Martin <[EMAIL PROTECTED]> To: [email protected] Subject: Montar imagen nero en linux para grabarla [solucionado] Date: Sun, 4 Aug 2002 21:49:11 +0200 Sender: Debian User <[EMAIL PROTECTED]> X-Mailer: KMail [version 1.3.2] Una imagen nero (*.nrg) es una imagen iso9660 con informacion extra en la cabecera, por lo que hay que pasarle a mount la opcion offset=xxx. Para averiguar el offset usamos algun editor hexadecimal como por ejemplo od # od -Ax -s imagen.nrg | more 053008 LABEL (informacion no util) nos fijamos en la primera linea que aparece y apuntamos la direccion (es hexadecimal). Le restamos 8008 (en hexadecimal tb) que es donde deberia empezar una imagen iso9660 estandar. # od -Ax -s imagen.iso | more 008008 LABEL (informacion no util) Pasamos el valor resultante a decimal y hacemos mount -t iso9660 imagen.nrg /mnt -o loop,offset=307200 en este ejemplo el offset es 307200 == 0x4B000 este numero puede variar. para finalizar solo falta hacer una imagen iso desde donde montamos la imagen nero con dd por ejemplo o con mkisofs. -- I WILL NOT DO THAT THING WITH MY TONGUE I WILL NOT DO THAT THING WITH MY TONGUE I WILL NOT DO THAT THING WITH MY TONGUE I WILL NOT DO THAT THING WITH MY TONGUE Bart Simpson on chalkboard in episode 7F07 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] On Fri, 25 Jul 2003 12:53:14 +0100 "R. Rodriguez" <[EMAIL PROTECTED]> wrote: > ... para imagenes .nrg sigue sin haber manera, no? :/ > > Saludos, > > aPT-DRiNK > > -- > Linux is user-friendly. It's just more selective on who its friends are > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] >

