Linux driver? question....

Okay. I got the new Ubuntu on my laptop but it won’t recognize the DVD drive. At all, it sees it in the computer drive list, but it won’t let you access it.

Any ideas? My laptop is an ACER Aspire 5515. I went to the website that makes the drive and there isn’t any help there.

Pretty much any DVD drive should be functional via a generic driver. I’m not sure exactly what you mean by “seeing it in the computer drive list”, though. If this is a default Ubuntu installation, the “gnome-volume-manager” package should be installed and should auto-mount a disk when you put it in the drive. For a computer with a single optical drive, it will be mounted to /media/cdrom, which is a symbolic link to /media/cdrom0. It should also create a temporary desktop item linking to the mounted disk.

If all else fails, take a look at /etc/fstab. There should be an entry similar to this:


/dev/scd0       /media/cdrom0   udf,iso9660 user,noauto,exec,utf8 0       0

You could try mounting it manually yourself with (for instance):


sudo mount -t iso9660 -o ro /dev/scd0 /media/cdrom0/

The exact dev node for the DVD/CDROM drive may vary depending on your system.

I dont think its a driver issue as DVDs dont use specialized drivers. I have seen this happen on linux boxes before, but only because the cdrom drive wasnt mounted. If you launch the terminal and type cd /media/cdrom are you able to access it?

Im not sure why gnome doesnt automount it, but if youre going to be using linux you should really get familiar with the mount command Stathol describes.