Tux is right, it has nothing to do with your /etc/fstab or /dev/cdrom symlink. Music CDs are not mounted. You need to check the permissions on the device that the /dev/cdrom symlink points to. Some distros manage permissions on these devices when the user logs in via the /etc/security/console.perms file. For instance, these lines are in the default Red Hat console.perms:
- Code: Select all
<cdrom>=/dev/cdrom* /dev/cdroms/* /dev/cdwriter* /mnt/cdrom*
<console> 0600 <cdrom> 0660 root.disk
What the above lines mean is that when a user is logged in at the console the permissions will be changed on the indicated files so that they will be owned by the person loggin in and have mode "0600". When the user logs out the ownership will go back to root and mode "0660". Now since /dev/cdrom is just a symlink on most people's systems the actual device file that it points to would get the changes.