LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Mounting of iso image in RHEL4 (https://www.linuxquestions.org/questions/linux-newbie-8/mounting-of-iso-image-in-rhel4-612339/)

sameer_vijay23 01-09-2008 08:41 AM

Mounting of iso image in RHEL4
 
Hi,

I am trying to mount the iso image of the dvd in RHEL 4 update 4.However its not getting mounted.

First i tried with the following command.However it asked me to specify the file system type

[sroot@pune-vp craft]# mount -o loop VP4.1.2501.iso /vp
mount: you must specify the filesystem type

Then i tried with the file system type also however it fails with the below error.

[sroot@pune-vp craft]# mount -t iso9660 -o loop VP4.1.2501.iso /vp
mount: wrong fs type, bad option, bad superblock on /dev/loop0,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)

Appreciate any suggestions on this.

acid_kewpie 01-09-2008 08:55 AM

clearly not an intro to yourself and interests in linux. moved to Linux - Newbie. if there was some specific literature or such which lead you to post in the intro's forum, please let us know.

b0uncer 01-09-2008 09:17 AM

What does
Code:

file VP4.1.2501.iso
say about it? If it really is an ISO image, it should say "ISO 9660 CD-ROM filesystem" or something..that hopefully reveals if it's regular iso or not. For a start.

roy_lt_69 01-10-2008 02:32 AM

I tend to use:
mount file.iso -r -t iso9660 -o loop /mnt/image
or
mount file.iso -r -t udf -o loop /mnt/image

roy_lt_69 01-10-2008 02:37 AM

I tend to use:
mount file.iso -r -t iso9660 -o loop /mnt/image
or
mount file.iso -r -t udf -o loop /mnt/image

oskar 01-10-2008 12:04 PM

Quote:

Originally Posted by roy_lt_69 (Post 3017527)
I tend to use:
mount file.iso -r -t iso9660 -o loop /mnt/image
or
mount file.iso -r -t udf -o loop /mnt/image

That's funny, I usually do
Code:

# mount file.iso /mnt/image -o loop
Does anyone know what the officially correct syntax is?
The -t iso9660 might help, but should not be necessary.

sameer_vijay23 01-12-2008 11:24 AM

Hi All,

Thanks for your input.
I found out the issue.The iso image seems to be improper.
I redownloaded the iso image and its getting mounted properly using
mount -o loop file.iso /mnt

Thanks all for your response.


All times are GMT -5. The time now is 07:03 AM.