Operating System - HP-UX
1826411 Members
4119 Online
109692 Solutions
New Discussion

Mount an external DVD Drive

 
SOLVED
Go to solution
Grayh
Trusted Contributor

Mount an external DVD Drive

How can I mount an external dvd drive on hp-ux11i V3 to install the Application Software

# ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
===============================================================================
disk 7 0/0/2/1.0.16 UsbScsiAdaptor CLAIMED DEVICE USB SCSI St
ack Adaptor
/dev/deviceFileSystem/Usb/MassStorage/dsk/disk@hp-1008
+797=HH66MC032VE1
/dev/deviceFileSystem/Usb/MassStorage/rdsk/disk@hp-100
8+797=HH66MC032VE1
disk 3 0/2/1/0.0.0.0.0 sdisk CLAIMED DEVICE HP
DG146BABCF
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
/dev/dsk/c0t0d0s1 /dev/rdsk/c0t0d0s1
/dev/dsk/c0t0d0s2 /dev/rdsk/c0t0d0s2
/dev/dsk/c0t0d0s3 /dev/rdsk/c0t0d0s3
disk 2 0/2/1/0.0.0.1.0 sdisk CLAIMED DEVICE HP
DG146BABCF
3 REPLIES 3
Robert-Jan Goossens_1
Honored Contributor
Solution

Re: Mount an external DVD Drive

Hi,

# ln -s /dev/deviceFileSystem/Usb/MassStorage/dsk/disk@hp-1008
+797=HH66MC032VE1 /dev/cdrom

# mkdir /cdrom
# mount /dev/cdrom /cdrom

HTH,
Robert-Jan
Torsten.
Acclaimed Contributor

Re: Mount an external DVD Drive

The reason for this is, this hp-ux release is using the device file system - you probably have seen this in linux before.


BTW, why you didn't create the hardware RAID on your disks?

see

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

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!   
Grayh
Trusted Contributor

Re: Mount an external DVD Drive

Thank you