1846679 Members
3572 Online
110256 Solutions
New Discussion

why cdrom mounting

 
SOLVED
Go to solution
Hogun L
Occasional Contributor

why cdrom mounting

hi everybody!!

#ioscan -kfnCdisk
claimed /dev/dsk/c6t2d0

#mount /dev/dsk/c6t2d0 /cdrom
/dev/dsk/c6t2d0: no such device or address

why mount cdrom please!!
hogun L
4 REPLIES 4
Steven Sim Kok Leong
Honored Contributor

Re: why cdrom mounting

Hi,

Execute the following

# lssf /dev/dsk/c6t2d0

What do you see any errors? Execute the following to re-install the special files.

# insf -e

Hope this helps. Regards.

Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
Steve Labar
Valued Contributor
Solution

Re: why cdrom mounting

Try mounting this with these steps.
mkdir /cdrom
mount -F cdfs /dev/dsk/cXtYdZ /cdrom

There must be a CD inserted in the device for this to work properly.

Good Luck.
Steve
Bill Hassell
Honored Contributor

Re: why cdrom mounting

If you try to mount certain types of CDROMs (there are several dozen different ways the 'standards. for CDROM filesystems can be used and the HP-UX cdfs code has not had a major rewrite for more than 10 years.

As mentioned, you may have to tell the mount command -F cdfs, and if that does not work, add the -r option as in:

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

Note there may be format issues with the filenames, so add -o cdcase and see if that helps. HP-UX cannot read pure Joliet filesystems (common with PC CDROMs) and requires a helper set of programs to read RockRidge extensions or ECMA 168 CDs.


Bill Hassell, sysadmin
Sridhar Bhaskarla
Honored Contributor

Re: why cdrom mounting

Hi,

Do a diskinfo on /dev/rdsk/c6t2d0 and see if it returns the type CD-ROM.

lssf /dev/dsk/c6t2d0 will give you the path and you can find if it is really a CD-ROM drive.

Also make sure you have a CD in there. Otherwise you will get no such device addresss.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try