Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I get my second CD ROM to work?

Hardware Configuration

How do I get my second CD ROM to work?

by  AP81  Posted    (Edited  )
I am always asked this question, and it often seems to trip up new users to Linux.

Linux allocates devices like this:

hda: Primary Master HDD
hdb: Primary Slave HDD
hdc: Secondary Master
hdd: Secondary Slave

In your /etc/fstab, you will have a line looking like this:

/dev/cdrom /mnt/cdrom iso9660 ro,noauto 0 0

To add a second drive, just copy your current entry for your CD ROM and modify it, eg:

/dev/hdd /mnt/cdrom2 iso9660 ro,noauto 0 0

So now you fstab will look something like this:

/dev/cdrom /mnt/cdrom iso9660 ro,noauto 0 0
/dev/hdd /mnt/cdrom2 iso9660 ro,noauto 0 0

Done...your second CD drive will now work.

Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top