Where is it located? When I installed Slack 9.1 it didn't detect my cd burner on /dev/hdd. If yours is on /dev/hdd (secondary slave) then it might be something with the installer. Anyway, find out where it's located, add it to your /etc/fstab file, and create a mount point for it.
Here's my fstab (with cd-burner added):
Code:
/dev/hda1 swap swap defaults 0 0
/dev/hda2 / ext2 defaults 1 1
/dev/hda3 /home ext2 defaults 1 2
/dev/hdb1 /downloads ext2 defaults 1 2
/dev/sr0 /mnt/cdrom iso9660 noauto,owner,users,ro 0 0
/dev/sr1 /mnt/burner auto noauto,owner,users,rw 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
/dev/sr0 and /dev/sr1 are the scsi-emulated drive names. If they were straight up IDE it would be /dev/hdc and /dev/hdd respectively.
To create your mount point, type as root in command line:
mkdir /mnt/<whatever you want to call it but DVD wouldn't be bad IMO>
but without the <>'s and obviously whatever you want to name it.

Let's say it's /mnt/DVD. Here's how your fstab will probably look after you're done (and assuming you've got no scsi emulation happening:
Code:
/dev/hda1 swap swap defaults 0 0
/dev/hda2 / ext2 defaults 1 1
/dev/hda3 /home ext2 defaults 1 2
/dev/hdb1 /downloads ext2 defaults 1 2
/dev/hdc /mnt/cdrom iso9660 noauto,owner,users,ro 0 0
/dev/hdd /mnt/DVD auto noauto,owner,users,rw 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
I'm assuming of course your dvd rom is on /dev/hdd. But you get the idea I hope.
