- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CDROM device path on HP-UX
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
08-29-2008 11:53 PM
08-29-2008 11:53 PM
CDROM device path on HP-UX
What is the best way to find out the CDROM device path on HP-UX please ?
Thanks in advance
Nahmad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 12:12 AM
08-30-2008 12:12 AM
Re: CDROM device path on HP-UX
Are you on 11.31 where there are new-fangled USB paths?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 12:50 AM
08-30-2008 12:50 AM
Re: CDROM device path on HP-UX
#ioscan -fnK |grep "CDROM"
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 01:22 AM
08-30-2008 01:22 AM
Re: CDROM device path on HP-UX
Now R u able to see the device path .
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 03:14 AM
08-30-2008 03:14 AM
Re: CDROM device path on HP-UX
ioscan -fnkC disk |more
ioscan -fnk |more
ioscan -fn |more
and look for the CD or DVD device. The ioscan command pointed out by Prashant is syntactically and logically wrong. First it has a capita K instead of lower case and then it greps for "CDROM". Not all device strings have "CDROM" in them. It varies and can be CD-ROM, DVD-ROM etc.
If you are using 11.31 the devices may be different as Dennis pointed out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 04:15 AM
08-30-2008 04:15 AM
Re: CDROM device path on HP-UX
You are right it should be small k. Thanks for showing the mistake
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 04:21 AM
08-30-2008 04:21 AM
Re: CDROM device path on HP-UX
ioscan -fknC disk|awk '/CD|DVD/{print ; getline;print}'
Most of the times, this also works:
ioscan -fnkCdisk|head
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2008 04:58 AM
08-30-2008 04:58 AM
Re: CDROM device path on HP-UX
simply get info from kernel itself at first place.
#ioscan -fnkC |grep -i dvd
Cheers!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2008 12:23 AM
08-31-2008 12:23 AM
Re: CDROM device path on HP-UX
Thanks all for you help
Nahmad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2008 12:24 AM
08-31-2008 12:24 AM