Operating System - HP-UX
1755254 Members
5794 Online
108831 Solutions
New Discussion юеВ

Mount ISO CD on HP-UX 11.31

 

Mount ISO CD on HP-UX 11.31

Hi, good morning.

I download a GlancePlus demo from "https://h20348.www2.hp.com/ecommerce/...". This creates a file () wich is a ".iso". I bourned it on a cd on my Windows XP PC, but I was unable to mount it on the HP-UX 11.31 machine.

Does some body centanly know how to mount it?.

Thank you in advance!.
8 REPLIES 8
Torsten.
Acclaimed Contributor

Re: Mount ISO CD on HP-UX 11.31

What means "unable to mount"?

What command did you use? What result did you get?

Try

# mount -F cdfs -o rr ...

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Kenan Erdey
Honored Contributor

Re: Mount ISO CD on HP-UX 11.31

Hi,

do ioscan -funCdisk and find device file of cd/dvdrom. create a directory to mount ie. /cdrom. then mount it:

mount -F cdfs -e -o ro,rr /dev/dsk/cxtydz /cdrom

Kenan.
Computers have lots of memory but no imagination

Re: Mount ISO CD on HP-UX 11.31

Hi Torsten.

I tryed this:

mls01:/home/ust>>mount -F cdfs -o rr /dev/dsk/c1t2d0 /cdrom
mount: /dev/dsk/c1t2d0 on /cdrom : Device busy
mls01:/home/ust>>


mls01:/home/ust>>mount -F cdfs /dev/dsk/c1t2d0 /cdrom
mount: /dev/dsk/c1t2d0 on /cdrom : Device busy
mls01:/home/ust>>


Torsten.
Acclaimed Contributor

Re: Mount ISO CD on HP-UX 11.31

Some things to try:

# diskinfo -v /dev/rdsk/c1t2d0
# mkdir /cdrom1
# mount -F cdfs /dev/dsk/c1t2d0 /cdrom1

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   

Re: Mount ISO CD on HP-UX 11.31

mls01:/home/ust>>diskinfo -v /dev/rdsk/c1t2d0
SCSI describe of /dev/rdsk/c1t2d0:
vendor: Optiarc
product id: DVD RW AD-5170A
type: CD-ROM
size: 72890 Kbytes
bytes per sector: 2048
rev level: 1.32
blocks per disk: 36445
ISO version: 0
ECMA version: 0
ANSI version: 2
removable media: yes
response format: 2
(Additional inquiry bytes: (32)4a (33)61 (34)6e (35)31 (36)31 (37)2c (38)32 (39)30 (40)30 (41)4d (42)59 (43)37 (44)58 (45)42 (46)
37 (47)31 (48)31 (49)37 (50)6e (51)0 (52)0 (53)0 (54)0 (55)0 (56)0 (57)0 (58)0 (59)0 (60)0 (61)0 (62)0 (63)0 (64)0 (65)0 (66)0 (67)0
(68)0 (69)0 (70)0 (71)0 (72)0 (73)0 (74)0 (75)0 (76)0 (77)0 (78)0 (79)0 (80)0 (81)0 (82)0 (83)0 (84)0 (85)0 (86)0 (87)0 (88)0 (89)0
(90)0 )
mls01:/home/ust>>mkdir /cdrom1
mls01:/home/ust>>mount -F cdfs /dev/dsk/c1t2d0 /cdrom1
mount: /dev/dsk/c1t2d0 on /cdrom1 : Device busy
mls01:/home/ust>>
Tim Nelson
Honored Contributor

Re: Mount ISO CD on HP-UX 11.31

How about fuser /cdrom or lsof /cdrom

Can you mount a different CD/DVD, maybe like an HP software release ?

If you can mount another and not your homemade one then.....

In previous versions you could use PFS to mount an ISO file as a filesystem.. Fortunately PFS is no longer included with OS and I do not see any option in the mount commands to do the same.

Steven Schweda
Honored Contributor

Re: Mount ISO CD on HP-UX 11.31

> [...] I bourned it on a cd on my Windows XP
> PC [...]

Some would believe that this was your first
big mistake. (It's also not a very complete
description of what you did and how you did
it.) A Forum search for:
"device busy" mount cd xp
might have led you to this recent experience:

http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254647

Re: Mount ISO CD on HP-UX 11.31

Hi.

Just for the next gay with this problem.

On a windows PC with ROCIO software, I chose ISO IMAGE to burn up the CD.

Then mount the CD this way:

mount -r -F cdfs /dev/dsk/c1t2d0 /cdrom

Then, install it as we know:

swinstall -s /cdrom

As easy as that.

Have a nice day.

Chao.