cd images mounten bzw entpacken

Software besorgen und anwenden
Post Reply
Message
Author
sym

cd images mounten bzw entpacken

#1 Post by sym »

gibt es eine mögichkeit unter linux cd immages auser iso also zb bin/cue nrg ... zu mounten oder zu entpacken also so tools wie isobuster oder deamontools

Andreas B.

Re: cd images mounten bzw entpacken

#2 Post by Andreas B. »

Ja die gibt es,
dazu muss im Kernel die Blockgeräte/Loopback unterstützung aktiviert sein,

gemountet wird es über

"mount /mnt/windows/brenner/image.iso /mnt/iso -o loop"

sym

Re: cd images mounten bzw entpacken

#3 Post by sym »

ja wie man isos mountet wuste ich auch ich wolte aber wissen wie man andere images mountet explizip bin/cue, ccd und nrg

Bob Gomorrha

Re: cd images mounten bzw entpacken

#4 Post by Bob Gomorrha »

Die bin-files zu mounten ist vom Prinzip her Schwachsinn, da sie ja nur Datenpakete (2352 byte/sector) für die weitere Verarbeitung (VCD/SVCD) enthalten.

Wenn Du aus dem bin/nrg/wie-sie-auch-immer-heissen ein mpeg ziehen willst, dann verwende vcdrip (gibt´s unter <a href="http://www.vcdimager.org" target="_blank"><!--autohttp-->http://www.vcdimager.org</a><!--autohttp--> )

cu

bg

sym

Re: cd images mounten bzw entpacken

#5 Post by sym »

aber was mache ich wenn es datenimmages sind und keine s/vcds

Bob Gomorrha

Re: cd images mounten bzw entpacken

#6 Post by Bob Gomorrha »

Wenn´s ein Datenimage ist, muss es irgendeinem Filesystem unterliegen.
Solange Dein Kernel dieses FS unterstützt, kannst Du das Image mit dem loop mounten.

Descartes

Re: cd images mounten bzw entpacken

#7 Post by Descartes »

Nero ISO Images (*.nrg) kannst du nicht mit dem Loop-Device mounten.

<a href="http://www.vcdgear.com/download.html." target="_blank"><!--auto-->http://www.vcdgear.com/download.html.</a><!--auto--> kann unter anderem auch nrg -> bin. GUI dafür gibt es unter <a href="http://www.abo.fi/~krnylund/qvcdgear/" target="_blank"><!--auto-->http://www.abo.fi/~krnylund/qvcdgear/</a><!--auto-->

Falls das Konvertieren nicht klappen sollte, kannst du noch folgenden Tipp aus comp.os.linux.misc ausprobieren:

<blockquote><hr>
Message-ID: <slrnac5kt5.31d.danceswithcrows@samantha.crow202.dyndns.org>
Subject: Re: CD images converter

If these nonstandard files actually contain an ISO9660 image with some
extra data tacked on to the header, you can use utilities like od or any
hex editor to find where the ISO9660 image starts. Like so:

od -Ax -s /tmp/file.iso

008008 LINUX SU7300.001
(more junk...)

The volume label for an ISO9660 image starts at 0x8000 bytes into the
image. So find where the volume label is in this .NGR file, then
determine the offset and feed that to mount.

mount -t iso9660 /path/to/nero_iso_images.nrg /mnt/loop/ -o loop,offset=0x8000

If this NGR file is not an ISO9660 file with a wrapper around it, you
might be out of luck unless someone has managed to reverse-engineer this
file format.
<hr></blockquote>

Ein bin/cue CDRom Image kannst du mit "bchunk" konvertieren:

<blockquote><pre><font size="1" face="">code:</font><hr><font face="Courier New" size="2">
NAME
bchunk - CD image format conversion from bin/cue to iso/cdr

SYNOPSIS
bchunk [-v] [-p] [-w] [-s] <image.bin> <image.cue> <basename>

DESCRIPTION
bchunk converts a CD image in a ".bin / .cue" format (sometimes
".raw / .cue") to a set of .iso and .cdr tracks.
</font><hr></pre></blockquote>

Post Reply