Zitat von Bojan Hribernik <bojan.hribernik@siol.net>:
Ahh... I'll just have to live with one-user-sound for now. It's not such a big problem, since I only have two users. In the future however I'll try to fix it. I need to do some school work now and then I'll see what I can do :)
I think I found it. :D SuSE makes the permissions for all alsa sevices for logged in users only. So if user1 logges in, the devices /dev/snd/* are all changed to ownership user1:audio and mode 600 like this: ls -l /dev/snd/pcmC0D0p crw------- 1 user1 audio 116, 16 2004-04-06 15:27 /dev/snd/pcmC0D0p So another user has no permissions on that device anymore (regardless of multi-opens), but root can access, because he has all permissions. So my hint is to edit /etc/logindevperm and change the line: :0 0600 /dev/snd/* to: :0 0660 /dev/snd/* After that all users which are in additional group "audio" can access the device. And after that, you have "only" the problem of multi opens on that sound chip. :) Daniel