Page 1 of 1

Re: sound not working Elyssa

Posted: Sat Dec 13, 2008 5:40 pm
by Husse
You could try to remove the volume control and add it back on - solves this kind of problems many times
If that does not help run

Code: Select all

lsmod | grep snd
and post the result

Re: sound not working Elyssa

Posted: Sun Dec 14, 2008 2:30 pm
by Husse
You are not doing anything wrong - the command grep snd looks for snd in lsmod which in turn is "piped" to grep with the vertikal line |
lsmod lists (ls) all loaded modules (mod) and the absence of snd indicates no sound module is loaded - you can confirm by looking at the entire output
Just in case - try

Code: Select all

lsmod | grep sound
Many commands in terminal do not tell you something like "snd not found" and this is the case for grep
It's Intel sound so there should not be anything strange with it.