Operating System - HP-UX
1753666 Members
6218 Online
108799 Solutions
New Discussion юеВ

Re: mounting CDROM in HP-UX

 
SOLVED
Go to solution
senthil_kumar_1
Super Advisor

mounting CDROM in HP-UX

Hi

I want to mount the cdrom in HP-UX.

Device files for CDROM:

/dev/dsk/c0t1d0
/dev/rdsk/c0t1d0
9 REPLIES 9
Torsten.
Acclaimed Contributor
Solution

Re: mounting CDROM in HP-UX

Try

# mount -F cdfs -o rr /dev/dsk/c0t1d0 /

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!   
T G Manikandan
Honored Contributor

Re: mounting CDROM in HP-UX

mount -F cdfs /dev/dsk/c0t1d0 /cdrom
Bijeesh
Respected Contributor

Re: mounting CDROM in HP-UX


hi

#mkdir /cdrom
#mount -F cdfs /dev/dsk/c0t1d0 /cdrom
senthil_kumar_1
Super Advisor

Re: mounting CDROM in HP-UX

In my HP-UX i found that a cdrom (/dev/dsk/c0t1d0) is connected.

How to find that the cdrom is connected in which mount point?
Steven E. Protter
Exalted Contributor

Re: mounting CDROM in HP-UX

Shalom,

ioscan -fnC disk

will show cd-rom

See this link:
http://www.hpux.ws/?p=20

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Johnson Punniyalingam
Honored Contributor

Re: mounting CDROM in HP-UX

In my HP-UX i found that a cdrom (/dev/dsk/c0t1d0) is connected.

>>How to find that the cdrom is connected in which mount point?<<<

Hi Senthil Kumar,

step1:- "You need create directory under "/"

#mkdir /cdrom

step2 :- "Mount cdrom"

mount -F cdfs /dev/dsk/c0t1d0 /cdrom -->

Hope this helps,

Thanks,
Johnson
Problems are common to all, but attitude makes the difference
T G Manikandan
Honored Contributor

Re: mounting CDROM in HP-UX

if the CDROM is already mounted it should display when you do a

#mount
or cat /etc/mnttab

Sajjad Sahir
Honored Contributor

Re: mounting CDROM in HP-UX


first make a directory

mkdir cdrom

second see where is cdrom in disk

by using ioscan -funC disk

once u found that one

mount /dev/dsk/c1t1d0 /cdrom

then go to cdrom( cd cdrom)

then use swinstall -s cdrom for install

thanks and regards

Sajjad Sahir
Suraj K Sankari
Honored Contributor

Re: mounting CDROM in HP-UX

Hi,

Do ioscan -fnC disk

the output will show you the cdrom device and status should be CLAMED

Suraj