- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: CDRom device path
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
09-20-2002 12:44 AM
09-20-2002 12:44 AM
CDRom device path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 01:01 AM
09-20-2002 01:01 AM
Re: CDRom device path
What operating system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 01:11 AM
09-20-2002 01:11 AM
Re: CDRom device path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 01:14 AM
09-20-2002 01:14 AM
Re: CDRom device path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 01:26 AM
09-20-2002 01:26 AM
Re: CDRom device path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 01:42 AM
09-20-2002 01:42 AM
Re: CDRom device path
I guess your CD-ROM is on either
IDE / SCSI or USB.
# dmesg | grep hd
# dmesg | greo sd
I'm not familiar with USB connection device.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2002 01:44 AM
09-20-2002 01:44 AM
Re: CDRom device path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2002 08:59 AM
09-25-2002 08:59 AM
Re: CDRom device path
IDE Disks
/dev/hda = Primary Master
/dev/hdb = Primary Slave
/dev/hdc = Secondary Master
/dev/hdd = Secondary Slave
Each disk can have up to 63 partitions and the first partition on the PM is /dev/hda1, the second partition is /dev/hda2 etc.
CDROMs don't have partitions on them so if your CDROM is the SM then you access it via /dev/hdc
e.g. mount -t iso9660 /dev/hdc /cdrom
SCSI disks are different. linux assigns the paths /dev/sda, /dev/sdb etc. in the order in which it finds the disks.
/dev/sda will be the lowest LUN on the first controller found, /dev/sdb will be the next lowest LUN on the first controller OR the lowest LUN on the second controller found etc.
SCSI disks can have up to 15 partitions so the first partition on the first disk is /dev/sda1 etc.
If you don't change the SCSI configuration then the order will be the same everytime linux boots. However if you add/remove a disk then the mapping will be different.
AS with IDE disks you refer to a SCSI CDROM via the whole disk path e.g. /dev/sdb
hth.