I use Gentoo Linux and with a CDRW and DVDRW. Installation went fine, but after I mount CDRW drive which has the LOD disk(orig) it's asking for the CD.
Here is my fstab:
/dev/hda1 /boot ext3 noauto,noatime 1 1
/dev/hda3 / reiserfs noatime 0 0
/dev/hda2 none swap sw 0 0
CDRW
/dev/cdroms/cdrom0 /mnt/cdrom auto user,noauto,ro,exec 0 0
DVDRW
/dev/cdroms/cdrom1 /mnt/dvd iso9660 noauto,ro,users,exec 0 0
NOTE: The next line is critical for boot!
none /proc proc defaults 0 0
glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
POSIX shared memory (shm_open, shm_unlink).
(tmpfs is a dynamically expandable/shrinkable ramdisk, and will
use almost no memory if not populated with files)
Adding the following line to /etc/fstab should take care of this:
none /dev/shm tmpfs defaults 0 0