LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   cd .bin images (https://www.linuxquestions.org/questions/linux-software-2/cd-bin-images-379539/)

ronanio 11-03-2005 07:12 AM

cd .bin images
 
what is an easy way of mounting bin images to access the data stored on them.

I have a few bin images that I created ages ago on windows using nero or easy cd or some other program that i wasnt to access on linux?

do i use the loopback for mounting them or is there another way?

Ronan

pyrael 11-03-2005 08:05 AM

no, the loopback will do it you need root privalges though
$ su
passwaord
#mount /dierctory/filename.bin -o loop /mount directory

this is whatI use seems to work well.

PsypherPunk 11-03-2005 08:21 AM

There MountISO which will allow you to mount them via a right-click. Not sure if this works outside KDE though.

ronanio 11-03-2005 09:06 AM

mount -o loop wuf-saw2b.bin /mnt/
ioctl: LOOP_CLR_FD: Device or resource busy
mount: you must specify the filesystem type
root@engraver:/home/ronan/dvd/Saw.2.TS.SVCD-WUF# mount -o loop -t iso9660 wuf-saw2b.bin /mnt/
mount: wrong fs type, bad option, bad superblock on /dev/loop1,
missing codepage or other error
In some cases useful info is found in syslog - try
dmesg | tail or so


dmesg |tail -n 20
sed[5660] general protection rip:40444b rsp:7ffffff17390 error:0
sed[5755] general protection rip:40444b rsp:7fffff918240 error:0
sed[2105] general protection rip:4074f8 rsp:7fffffd18360 error:0
sed[3269] general protection rip:40444b rsp:7fffffb16a30 error:0
sed[12606]: segfault at 0000000000000008 rip 00002aaaaaaabd43 rsp 00007fffffdc22a0 error 4
sed[12744]: segfault at 0000000000000008 rip 00002aaaaaaabd43 rsp 00007fffffdc1340 error 4
ISO 9660 Extensions: Microsoft Joliet Level 3
ISOFS: changing to secondary root
mptscsih: ioc0: >> Attempting task abort! (sc=ffff81006e08eb00)
mptscsih: ioc0: >> Attempting task abort! (sc=ffff81006e08eb00)
mptscsih: ioc0: >> Attempting task abort! (sc=ffff81003d5764c0)
mptbase: ioc0: IOCStatus(0x0048): SCSI Task Terminated
mptbase: ioc0: IOCStatus(0x0048): SCSI Task Terminated
mptbase: ioc0: IOCStatus(0x0048): SCSI Task Terminated
mptscsih: ioc0: >> Attempting target reset! (sc=ffff81006e08eb00)
mptbase: ioc0: IOCStatus(0x0048): SCSI Task Terminated
mptscsih: ioc0: >> Attempting task abort! (sc=ffff81006e08eb00)
mptscsih: ioc0: >> Attempting bus reset! (sc=ffff81006e08eb00)
mptbase: ioc0: IOCStatus(0x0048): SCSI Task Terminated
Unable to identify CD-ROM format.


dont think it can read it?

R

keefaz 11-03-2005 09:09 AM

If it is a audio cd image, there is no filesystem into it, so you can't mount it

There is surelly OSS tools that can deal with this, maybe cdparanoia

PTrenholme 11-03-2005 09:42 AM

Quote:

Originally posted by ronanio
mount -o loop wuf-saw2b.bin /mnt/
[snip]

You're mounting to /mnt rather than a directory created in /mnt. While that might work, /mnt usually has some default directories created in it, and i think that mount will object if the file system mount point (i.e., directory) is not empty.

Try creating (as root) a director in /mnt to us as you mount point. For example,
Code:

sudo mkdir /mnt/BinCD
and using it:
Code:

mount -o loop -t  iso9660 wuf-saw2b.bin /mnt/BinCD

ronanio 11-03-2005 09:49 AM

no same result...
unable to identify cdrom format...

Its a standard bin cd image... i though this was a regular type format.
D-tools can mount these in windows no problem..
there must be some way for linux to mount them on CL...

??
EDIT

its an SVCD cdrom... CDemu is the solution it would appea

/EDIT

PTrenholme 11-03-2005 12:11 PM

There are a couple of programs available for converting BIN images to ISO images. (bin2iso comes to mind.) I've never used them, but you might like to try one or another. I suspect that the "-t iso9960" type is looking for an ISO format.


All times are GMT -5. The time now is 02:33 AM.