Audio CDs will not Auto-mount Correctly
Solution 1:
I don't know if this applies to you, but I had problems with audio CDs being recognised by some programs using a USB optical drive.
The problem programs were using udev to detect the details of the disc, and it seems that the cdrom_id helper that udev uses was generating larger SCSI commands than the drive could handle. Since the program didn't add the udev attributes marking the disc as an audio CD, some programs would ignore the disc.
You can test if this affects you by running "/lib/udev/cdrom_id --debug /dev/cdrom". If your drive is affected, the output will be something like:
main: probing: '/dev/cdrom'
cd_inquiry: INQUIRY: [CHIYOMI ][TSD80Y1 DVD RW ][D010]
info_scsi_cmd_err: GET CONFIGURATION failed
ID_CDROM=1
ID_CDROM_CD_R=1
ID_CDROM_CD_RW=1
ID_CDROM_DVD=1
ID_CDROM_DVD_R=1
ID_CDROM_MRW=1
ID_CDROM_MRW_W=1
ID_CDROM_MEDIA=1
If the program is functioning correctly, then there should be more debug messages at the start and a few extra attributes similar to the following:
ID_CDROM_MEDIA_CD=1
ID_CDROM_MEDIA_SESSION_COUNT=1
ID_CDROM_MEDIA_TRACK_COUNT=16
ID_CDROM_MEDIA_TRACK_COUNT_AUDIO=16
If this describes the problem you're seeing, you could try replacing the /lib/udev/cdrom_id program with the version from natty as a work around.
Solution 2:
I think my issue has been resolved after entire set of system updates (I am speaking of 10.10). Now Rhythmbox is playing Audio CDs, so mounting process is OK. I just can give a basic info on my system (iCore 3 (M350), Ubuntu 10.10, kernel 2.6.35-28-generic-pae, Gnome 2.32.0, Rhythmbox v. 0.13.1.) So thank you for comments and suggestions.