1820165 Members
3912 Online
109620 Solutions
New Discussion юеВ

DVD on HPux 11iv3

 
SOLVED
Go to solution
David Dilly
Regular Advisor

DVD on HPux 11iv3

How i can see the DVD on hpux 11iv3 (09/07) ?

thanks
6 REPLIES 6
David Dilly
Regular Advisor

Re: DVD on HPux 11iv3

When i execute the ioscan -fnNC disk --> I see no DVD.
when i excute the ioscan -fnN --> I see no DVD.

it's very strange ..... no ?
Torsten.
Acclaimed Contributor

Re: DVD on HPux 11iv3

No, not that strange.

I'm sure you are on a rx3600 or 6600, right?

The drive is USB and USB handling is now different (and looks a bit strange).

# ioscan -fn
...
disk 1 0/0/2/1.0.16 UsbScsiAdaptor CLAIMED DEVICE OO Dev
ice Driver
/dev/deviceFileSystem/Usb/MassStorage/dsk/disk@hp-
1008+294=A60020000001
/dev/deviceFileSystem/Usb/MassStorage/rdsk/disk@hp
-1008+294=A60020000001

...


This is the drive.

I prefer to set a link to both device files, this makes life easier.


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!   
David Dilly
Regular Advisor

Re: DVD on HPux 11iv3

thanks,
i am on a rx2660.

You don't say how can i use the dvd.
there is no peripheral device file for the DVD ....
Torsten.
Acclaimed Contributor
Solution

Re: DVD on HPux 11iv3

It's similar on this system.

This **is** the device file!

# ioscan -fn
...
disk 1 0/0/2/1.0.16 UsbScsiAdaptor CLAIMED DEVICE OO Dev
ice Driver
/dev/deviceFileSystem/Usb/MassStorage/dsk/disk@hp-
1008+294=A60020000001
/dev/deviceFileSystem/Usb/MassStorage/rdsk/disk@hp
-1008+294=A60020000001

...

Because this is hard to handle, use a link like

# ln -s /dev/deviceFileSystem/Usb/MassStorage/dsk/disk@hp-
1008+294=A60020000001 /dev/mycdrom


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!   
Torsten.
Acclaimed Contributor

Re: DVD on HPux 11iv3

and to complete this - use the newly created device file to mount the drive:

# mount /dev/mycdrom /cdrom

(or whatever your mount point is).

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!   
David Dilly
Regular Advisor

Re: DVD on HPux 11iv3

Thanks a lot
Bye