- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem mounting CD-ROM
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:40 AM
03-07-2002 08:40 AM
# 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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:42 AM
03-07-2002 08:42 AM
Re: Problem mounting CD-ROM
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:44 AM
03-07-2002 08:44 AM
Solutionrun 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..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:46 AM
03-07-2002 08:46 AM
Re: Problem mounting CD-ROM
Usually cdroms are /dev/dsk/c2t2d0 and your boot disk is /dev/dsk/c0t6d0.
GL,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:49 AM
03-07-2002 08:49 AM
Re: Problem mounting CD-ROM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:52 AM
03-07-2002 08:52 AM
Re: Problem mounting CD-ROM
#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!!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 08:53 AM
03-07-2002 08:53 AM
Re: Problem mounting CD-ROM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 09:00 AM
03-07-2002 09:00 AM
Re: Problem mounting CD-ROM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 01:08 PM
03-07-2002 01:08 PM
Re: Problem mounting CD-ROM
-Gus