Operating System - HP-UX
1753394 Members
7177 Online
108792 Solutions
New Discussion юеВ

Re: ISO file mounting on B.11.31 Os machine using mount command.

 
SOLVED
Go to solution
Vinayak_HPUX
Frequent Advisor

ISO file mounting on B.11.31 Os machine using mount command.

I have tried below but it is not working.....
Kindly suggest .... iso file is exist in /vin directory only

[root@hpslia40][/]mount -F cdfs -o cdcase /vin/hpux_11i_v3_DCOE_Sep_2008_dvd1.iso /vin1/
mount: /vin/hpux_11i_v3_DCOE_Sep_2008_dvd1.iso is an invalid operand

Thanks in advance :)
"Success is matter of law not luck, Make ur own & follow them -Shivkhera[You Can Win] "
7 REPLIES 7
Michal Kapalka (mikap)
Honored Contributor
Solution

Re: ISO file mounting on B.11.31 Os machine using mount command.

Michal Kapalka (mikap)
Honored Contributor

Re: ISO file mounting on B.11.31 Os machine using mount command.

hi,

i found a another solution on itrc :

# copy from thread :

I had the same problem last week and I followed this procedure.
I've generated a new logical volume, bigger then iso image, Then I copied the iso image on the logical volume raw device and mounted it as a normal file system.

mkdir /isoimg
lvcreate -n ISOLV -L 3096 /dev/vg00
dd if=isoimage of=/dev/vg00/rISOLV bs=8192
mount /dev/vg00/ISOLV /isoimg

#===========================================

hope it help

mikap

Dennis Handly
Acclaimed Contributor

Re: ISO file mounting on B.11.31 Os machine using mount command.

>mikap: I found a another solution on ITRC: copy from thread:

Instead of copying it, it would be better to just include the URL.
Michal Kapalka (mikap)
Honored Contributor

Re: ISO file mounting on B.11.31 Os machine using mount command.

Hi Dennis,

ok the next time i'll send a link.

mikap
Sunny123_1
Esteemed Contributor

Re: ISO file mounting on B.11.31 Os machine using mount command.

Vinayak_HPUX
Frequent Advisor

Re: ISO file mounting on B.11.31 Os machine using mount command.

I got the soutions Thanks
"Success is matter of law not luck, Make ur own & follow them -Shivkhera[You Can Win] "