On Thu, Nov 28, 2002 at 01:15:19AM -0800, Curtis Vaughan wrote: > On my iBook, it will now play a music CD, but there is no sound. Is > there something I need to enable so that I can listen to the actual > music on a CD? This is the case, whether I play a CD through KSCD or > XMMS. Although the latter plays local files fine.
I have had this same problem with my iMac, and haven't found a solution. Instead, I use the console to play CDs straight through: #!/bin/sh cdda2wav -C little -t 1+`cdir | tail -1 | sed 's/^..[^ ]* *//'` -D /dev/cdrom -N -e -d0 -I cooked_ioctl -q & I added -C little recently, because most CDs are little endian and the cdda2wav endian-guessing routine guesses wrong sometimes. The cdir part just locates the last track number. -- *----------------------------------------------------------------* | Chris Tillman [EMAIL PROTECTED] | | To HAVE, GIVE all TO all (ACIM) | *----------------------------------------------------------------*

