On Tue, Jul 19, 2011 at 01:32:28PM -0300, Daniel Hilst Selli wrote: > Hey people, I'm get an permission denied when trying to start as > /etc/inid.d/alsasound > > here is the error: > http://pastebin.com/F6bedM2p > > My sound works fine, but alsa isn't restoring my configs.. so I need to > open alsamixer and unmute some channels after every book > > Any idea? > > Thanks in advance! > -- > "Do or do not... there is no try" Yoda Master >
Sounds like someone forgot to read the Alsa Guide here: http://www.gentoo.org/doc/en/alsa-guide.xml. If they had, they'd have read: Audio Group Before we move on to testing, there's one last important thing that needs to be setup. Rule of thumb in a *nix OS: Do not run as root unless needed. This applies here as well ;) How? Well, most of the times you should be logged in as a user and would like to listen to music or access your soundcard. For that to happen, you need to be in the "audio" group. At this point, we'll add users to the audio group, so that they won't have any issues when they want to access sound devices. We'll use gpasswd here and you need to be logged in as root for this to work. Code Listing 3.4: Adding users to the audio group (Substitute <username> with your user) # gpasswd -a <username> audio Adding user <username> to group audio ... ;) Terry