Barry.SCHWARTZ posted <[EMAIL PROTECTED]>, excerpted below, on Sun, 20 Nov 2005 04:54:59 -0600:
> Duncan <[EMAIL PROTECTED]> skribis: >> The problem could also be one of permissions, if your user isn't in >> the audio group, or the devices have non-standard permissions or >> ownership. > > That reminds me of something. > > A long time ago, I put the following in a > file/etc/udev/rules.d/30-local.rules after a udev upgrade broke my > sound: > > # alsa devices > KERNEL="controlC0", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" > KERNEL="pcmC0D0c", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" > KERNEL="pcmC0D0p", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" > KERNEL="pcmC0D1c", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" > KERNEL="pcmC0D1p", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" > KERNEL="seq", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" > KERNEL="timer", NAME="snd/%k", SYMLINK="%k", > GROUP="audio" Hmm... grep -B2 snd /etc/udev/rules.d/50-udev.rules # alsa devices SUBSYSTEM=="sound", GROUP="audio" KERNEL=="controlC[0-9]*", NAME="snd/%k" KERNEL=="hw[CD0-9]*", NAME="snd/%k" KERNEL=="pcm[CD0-9cp]*", NAME="snd/%k" KERNEL=="midiC[D0-9]*", NAME="snd/%k" KERNEL=="timer", NAME="snd/%k" KERNEL=="seq", NAME="snd/%k" So... basically what you did is add the main /dev dir symlinks... Interesting... -- Duncan - List replies preferred. No HTML msgs. "Every nonfree program has a lord, a master -- and if you use the program, he is your master." Richard Stallman in http://www.linuxdevcenter.com/pub/a/linux/2004/12/22/rms_interview.html -- [email protected] mailing list
