[Linux] Problems mounting ISO image

For everything that's not in any way related to PureBasic. General chat etc...
codemaniac
Enthusiast
Enthusiast
Posts: 289
Joined: Mon Apr 02, 2007 7:22 am
Location: Finland

[Linux] Problems mounting ISO image

Post by codemaniac »

Hello!

I know this isn't a Linux forum, but there are enough Linux users around here, so I post this in the hope that someone of you can help me out.

Here's the output from the Terminal of what I have done:

Code: Select all

Pikkunen:~# file SADVENTURE_DEMO.iso
SADVENTURE_DEMO.iso: ISO 9660 CD-ROM filesystem data 'SADVENTUREDEMO1                '

Pikkunen:~# file /media/cdrom/
/media/cdrom/: directory

Pikkunen:~# mount -o loop -t iso9660 SADVENTURE_DEMO.iso /media/cdrom/
mount: Not a directory

Pikkunen:~# dmesg | tail
File unit size != 0 for ISO file (1536).
Interleaved files not (yet) supported.
File unit size != 0 for ISO file (1536).
Interleaved files not (yet) supported.
File unit size != 0 for ISO file (1536).
UDF-fs: No VRS found
ISO 9660 Extensions: Microsoft Joliet Level 3
ISO 9660 Extensions: RRIP_1991A
Interleaved files not (yet) supported.
File unit size != 0 for ISO file (1536).

Pikkunen:~#
As you see, I'm trying to mount the game Sailor's Adventure Demo, but the mount command fails. I checked the MD5 of the ISO against the one which is present on the website of the game and both checksums are identical.

Thanks in advance!
Cute?
Beach
Enthusiast
Enthusiast
Posts: 677
Joined: Mon Feb 02, 2004 3:16 am
Location: Beyond the sun...

Post by Beach »

Just curious... did you also try giving the full path to the ISO?

Code: Select all

mount -o loop -t iso9660 /home/yourdir/SADVENTURE_DEMO.iso /media/cdrom/
-Beach
codemaniac
Enthusiast
Enthusiast
Posts: 289
Joined: Mon Apr 02, 2007 7:22 am
Location: Finland

Post by codemaniac »

Beach wrote:Just curious... did you also try giving the full path to the ISO?

Code: Select all

mount -o loop -t iso9660 /home/yourdir/SADVENTURE_DEMO.iso /media/cdrom/
Yup, the same error still happens. I also tried other directories than /media/cdrom/.
Cute?
god64
User
User
Posts: 28
Joined: Sun Jul 08, 2007 6:20 am
Location: Kingdom of Bavaria
Contact:

Post by god64 »

has the kernel joliet support compiled in? or maybe should try it on ubuntu :twisted:
codemaniac
Enthusiast
Enthusiast
Posts: 289
Joined: Mon Apr 02, 2007 7:22 am
Location: Finland

Post by codemaniac »

god64 wrote:has the kernel joliet support compiled in? or maybe should try it on ubuntu :twisted:
Joliet support is in the kernel. Tried in Debian, Gentoo and Xandros. Installing Ubuntu won't make any difference.
Cute?
Nik
Addict
Addict
Posts: 1017
Joined: Fri May 13, 2005 11:45 pm
Location: Germany
Contact:

Post by Nik »

tried omititing the -t option?
Dave651
User
User
Posts: 10
Joined: Thu Jun 14, 2007 11:27 pm

Post by Dave651 »

Try booting with "ide=nodma" as a parameter
codemaniac
Enthusiast
Enthusiast
Posts: 289
Joined: Mon Apr 02, 2007 7:22 am
Location: Finland

Post by codemaniac »

Nik wrote:tried omititing the -t option?
Still nothing.. :(
Dave651 wrote:Try booting with "ide=nodma" as a parameter
Yeah, I found that one in Google too.. However, it doesn't work. :(
Cute?
Post Reply