Operating System - HP-UX
1819725 Members
3014 Online
109606 Solutions
New Discussion юеВ

How to mount cdrom in HP-UX

 
Sunny Anthony
Occasional Advisor

How to mount cdrom in HP-UX

Please tell me how mount CDROM in HP-UX
3 REPLIES 3
Adisuria Wangsadinata_1
Honored Contributor

Re: How to mount cdrom in HP-UX

Hi,

If you want to mount HP-UX CD (eg. HP-UX Application CD), you can follow the steps below :

1. check the CDROM device file by ioscan command :

# ioscan -nfCdisk
Class I H/W Path Driver S/W State H/W Type
===============================================================
disk 0 0/0/2/0.0.0.0 sdisk CLAIMED DEVICE
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0

2. create the mount point if your system dont have the mount point directory :

# mkdir /cdrom

3. mount the cdrom :

# mount /dev/dsk/c0t0d0 /cdrom

For oracle CD, you can follow on the document (docID : S3100001252, about 'Oracle: using pfs to mount an Oracle CD') below :

http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000080088381

Hope this information can help you.

Cheers,
AW
now working, next not working ... that's unix
mukkala
Advisor

Re: How to mount cdrom in HP-UX

hi

create a directory /mp

#mount -F cdfs

#mount -F cdfs /mp

Indrajit_1
Valued Contributor

Re: How to mount cdrom in HP-UX

Hi,

Do the following steps..

#mkdir /CDROM
#ioscan -funC disk

find the physical path of cdrom..

for example ..
/dev/dsk/c0t6d0

#mount -F cdfs /dev/dsk/c0t6d0 /CDROM
# vi /etc/fstab

made an entry in fstab file..

so that, next time whenever u want to mount any CD, u just need to type..

#mount /CDROM

To unmount ..
#umount /CDROM

Cheers..
Indrajit
Never Ever Give Up