HOWTO: Audio playback as user "spot" in Puppy

How to do things, solutions, recipes, tutorials
Post Reply
Message
Author
Walter Dnes
Posts: 153
Joined: Fri 30 Dec 2016, 10:56

HOWTO: Audio playback as user "spot" in Puppy

#1 Post by Walter Dnes »

I started off trying to run Pale Moon browser as user "spot" in SULU2. The video worked, but there was no sound. I ran "alsamixer" (again as "spot") but it died, complaining about not being able to find the mixer. The problem was that all files in /dev/snd were root-accessable-only. The solution was to execute (as root) the command...

Code: Select all

chown -R root:spot /dev/snd
Both sound and alsamixer work for "spot" now. Files in /dev are virtual, and are re-created at bootup, so it's best to add the above command to /etc/rc.d/rc.local which is run at the end of the bootup process.

Post Reply