1835508 Members
3512 Online
110078 Solutions
New Discussion

Error mounting a CD

 
SOLVED
Go to solution
hboo
Frequent Advisor

Error mounting a CD

Hello All

I'm Trying to mount a CD in an HPUX server with this commands:

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

No errors are in the output

But when access to cdrom directory, the only file looks like:

ANSIC_CC.DEPOT;1
and I can't install the product ANSI C,

I think is a problem whit the command to mount CD..

Somebody can help me please...

Thanks :(
3 REPLIES 3
James R. Ferguson
Acclaimed Contributor
Solution

Re: Error mounting a CD

Hi:

I suggest you try:

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

(or)

# mount -F cdfs -e -o ro,cdcase /dev/dsk/c0t1d0 /cdrom

Regards!

...JRF...
hboo
Frequent Advisor

Re: Error mounting a CD

Thanks James

I've tried with:
mount -o cdcase /dev/dsk/c0t1d0 /cdrom

And works good..

Thank's
hboo
Frequent Advisor

Re: Error mounting a CD

Thank's
Hayse ;)