Stop Microsoft

Operating Systems => Linux and UNIX => Topic started by: cymon on 2 June 2006, 02:21

Title: Remapping cdrom drives in Debian Etch
Post by: cymon on 2 June 2006, 02:21
I have recently swapped out my old IDE CDROM for a SCSI CD-RW.  Of course, the cdrom is still set at /dev/hdc. Obviously, there is nothing there.  The CDROM is on an AIC-7890 controller, supported by linux, and Linux recongnizes the cdrom, it just won't mount it.  The cdrom is SCSI ID 1.
Title: Re: Remapping cdrom drives in Debian Etch
Post by: mobrien_12 on 2 June 2006, 06:25
Quote from: cymon
I have recently swapped out my old IDE CDROM for a SCSI CD-RW.  Of course, the cdrom is still set at /dev/hdc. Obviously, there is nothing there.  The CDROM is on an AIC-7890 controller, supported by linux, and Linux recongnizes the cdrom, it just won't mount it.  The cdrom is SCSI ID 1.


cd /dev

ls -l /dev/cdrom

should be (broken) symlink pointing to /dev/hdc

if so

rm /dev/cdrom

ln -s /dev/scd0 /dev/cdrom

Check that /etc/fstab is set up for /dev/cdrom and not /dev/hdc

otherwise change /dev/hdc in the fstab to /dev/scd0