Operating System - HP-UX
1827280 Members
2903 Online
109717 Solutions
New Discussion

Re: Problem mounting CD-ROM

 
SOLVED
Go to solution
Gus Mestousis
Frequent Advisor

Problem mounting CD-ROM

Running HP-UX 10.20 on a laptop. I can see the device when I do an ioscan:

# ioscan |grep CD
8/16/5.3.0 disk PLEXTOR CD-ROM PX-40TS

But I can not mount the device:

# mount /dev/dsk/c0t6d0 /SD_CDROM
/dev/dsk/c0t6d0: No such device or address

# mount /dev/rdsk/c0t6d0 /cdrom
mount: /cdrom: No such file or directory

# ls /dev/dsk
c0t0d0 c0t1d0 c0t2d0 c0t6d0
Sure, let me just drop everything and work on your problem.
8 REPLIES 8
Darrell Allen
Honored Contributor

Re: Problem mounting CD-ROM

Does "ioscan -fnC disk" show c0t6d0 as the device file for the cdrom? Does it show CLAIMED?

Darrell
"What, Me Worry?" - Alfred E. Neuman (Mad Magazine)
Joseph C. Denman
Honored Contributor
Solution

Re: Problem mounting CD-ROM

Hi Gus,

run ioscan with the fnC option to see the driver.

ioscan -fnC disk

if no driver is shows up, then it may have not been create or may have been deleted?

insf -e #to recreate.

Hope this helps.

...jcd..
If I had only read the instructions first??
Craig Rants
Honored Contributor

Re: Problem mounting CD-ROM

Run and ioscan -fnC disk and see what device file is assigned to your cdrom, then go from there.

Usually cdroms are /dev/dsk/c2t2d0 and your boot disk is /dev/dsk/c0t6d0.

GL,
C
"In theory, there is no difference between theory and practice. But, in practice, there is. " Jan L.A. van de Snepscheut
Gus Mestousis
Frequent Advisor

Re: Problem mounting CD-ROM

# ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
disk 0 8/16/5.0.0 sdisk CLAIMED DEVICE ADTX AXSITS2532R 01C
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
disk 2 8/16/5.1.0 sdisk CLAIMED DEVICE ADTX AXSITS2532R 01C
/dev/dsk/c0t1d0 /dev/rdsk/c0t1d0
disk 3 8/16/5.2.0 sdisk CLAIMED DEVICE ADTX AXSITS2532R 01C
/dev/dsk/c0t2d0 /dev/rdsk/c0t2d0
disk 4 8/16/5.3.0 sdisk CLAIMED DEVICE PLEXTOR CD-ROM PX-40TS
Sure, let me just drop everything and work on your problem.
Gus Mestousis
Frequent Advisor

Re: Problem mounting CD-ROM

I ran
#insf -e

Worked like magic!

# ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
disk 0 8/16/5.0.0 sdisk CLAIMED DEVICE ADTX AXSITS2532R 01C
/dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
disk 2 8/16/5.1.0 sdisk CLAIMED DEVICE ADTX AXSITS2532R 01C
/dev/dsk/c0t1d0 /dev/rdsk/c0t1d0
disk 3 8/16/5.2.0 sdisk CLAIMED DEVICE ADTX AXSITS2532R 01C
/dev/dsk/c0t2d0 /dev/rdsk/c0t2d0
disk 4 8/16/5.3.0 sdisk CLAIMED DEVICE PLEXTOR CD-ROM PX-40TS
/dev/dsk/c0t3d0 /dev/rdsk/c0t3d0

Thanks everyone for the lightning fast replies!!!!
Sure, let me just drop everything and work on your problem.
Sanjay_6
Honored Contributor

Re: Problem mounting CD-ROM

Hi Gus,

Looks like the device file for your cdrom should be c0t3d0 and not c0t6d0,

do a insf -e to create the device files. Then do a ioscan fnC disk to check the device file for cdrom. If you see the cdrom device file as c0t3d0, mount the cdrom using,

mount /dev/dsk/c0t3d0 /cdrom

Hope this helps.

Regds
Helen French
Honored Contributor

Re: Problem mounting CD-ROM

Hi,

The device file you are using is different. Th CD Drive device file is /dev/dsk/c0t3d0 ! ( NOT /dev/dsk/c0t6d0 ). Try this:

# mount /dev/dsk/c0t3d0 /SD_CDROM

HTH,
Shiju
Life is a promise, fulfill it!
Gus Mestousis
Frequent Advisor

Re: Problem mounting CD-ROM

Thanks to everyone who replied.

-Gus
Sure, let me just drop everything and work on your problem.