You are not logged in.

#1 2011-08-01 22:31:48

antony
Member
Registered: 2011-07-14
Posts: 43

Mounting an iso file

Hi,
I have the feeling that this question has been already asked 1000 times but I still haven't found a solution, so here it goes...
I created an iso file of a (data) dvd using k3b on some other computer; now I want to mount it.
I have tried the following:

sudo mount -o loop -t iso9660 /path/to.iso mnt/dvd
fails with
[10500.914004] ISOFS: Unable to identify CD-ROM format.
[10500.922975] UDF-fs: No anchor found
[10500.922978] UDF-fs: Rescanning with blocksize 2048
[10500.923411] UDF-fs: No anchor found
[10500.923412] UDF-fs: No partition found (1)
[10505.392216] UDF-fs: No anchor found
[10505.392221] UDF-fs: Rescanning with blocksize 2048
[10505.392492] UDF-fs: No anchor found
[10505.392493] UDF-fs: No partition found (1)
[11244.268231] ISOFS: Unable to identify CD-ROM format.
in dmesg|tail.

fuseiso -p path/to.iso mnt/dvd
fails with
init: wrong standard identifier in volume descriptor 0, skipping..
[...]
(same until descriptor 18).

Anyone has another idea of what I can try?
Thanks in advance,
Antony

Offline

#2 2011-08-01 22:53:24

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: Mounting an iso file

Maybe you're missing a '/' in front of your 'mnt':

mount -o loop tinycore_3.5.iso /mnt/dvd/

works for me.
(I don't have any data DVD to try)


BTW, hen pasting code, please use [ code ] tags https://bbs.archlinux.org/help.php#bbcode

like this

It makes the code more readable and more convenient to scroll through.

Last edited by karol (2011-08-01 22:54:51)

Offline

#3 2011-08-02 07:52:43

antony
Member
Registered: 2011-07-14
Posts: 43

Re: Mounting an iso file

No, I created a mnt folder in my $HOME just for testing. So I'm not missing a /. And doing this in the actual /mnt folder doesn't work either, it gives me the same errors.

Offline

#4 2011-08-02 08:03:39

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: Mounting an iso file

Have you googled that error message?
http://www.linuxforums.org/forum/debian … ormat.html

Offline

#5 2011-08-02 13:01:48

perbh
Member
From: Republic of Texas
Registered: 2005-03-04
Posts: 765

Re: Mounting an iso file

I've never used 'k3b' - but from the error-messages it would seem that it is in udf-format rather than iso.
Try 'mount -o loop -t udf'

Offline

#6 2011-08-02 13:02:34

szim90
Member
Registered: 2011-08-01
Posts: 29

Re: Mounting an iso file

I think this might be because you are trying to mount a dvd iso, but the iso9660 type is specific to CDs (according to wikipedia, CDs use the iso9660 filesystem, while DVDs generally use udf).

Have you tried mounting without the -t option and letting mount try to determine the type automatically?

sudo mount -o loop /path/to.iso mnt/dvd

or, if that doesn't work, try specifying udf:

sudo mount -t udf -o loop /path/to.iso mnt/dvd

Hope this helps.

Offline

#7 2011-08-03 06:20:58

antony
Member
Registered: 2011-07-14
Posts: 43

Re: Mounting an iso file

Seems like the problem is the one suggested by karol, i.e. k3b actually creates a .img and not a .iso.  I'll have a look at mkisofs, and thanks all for your suggestions.

Offline

#8 2011-08-03 15:54:57

lilsirecho
Veteran
Registered: 2003-10-24
Posts: 5,000

Re: Mounting an iso file

Perhaps isomaster is the tool for your project..


Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit!     X-ray confirms Iam spineless!

Offline

Board footer

Powered by FluxBB