
OK, the command:
sudo lshw -C multimedia
sudo = run this command as root… ie. with admin privileges.
lshw = list hardware
-C multimedia = only echo the “multimedia” Class to screen.
Told me what your sound card(s) were, which drivers they were using, and if they were loading…
That gave me a hint, as I knew the Intel HD audio sometimes need a “tweak”.
So, the command:
cat /proc/asound/card0/codec#* | grep Codec
cat = concatenate files and print to (in this case) screen
/proc/asound/card0/codec#* = path to, and name of, the files to read
| = pipe the output to the next command, which is…
grep Codec = search the input for lines containing the word Codec and display them.
Told me the correct Codec to search for the “options” for.
If you want to know more about a particular command, see its man page (manual)… eg. to see the man page for the grep command -
in a terminal enter:
man grep
or to see the man page for cat
man cat
or
man sudo
etc.
you can also check their info page, eg.:
info grep
or
info cat
etc.
The problem was getting the Intel Hi-Def alsa audio drivers to load the correct options, and load the sound cards in the correct order
First read this
https://help.ubuntu.com/community/HdaIntelSoundHowto
And this:
http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio-Models.txt
lists the usable options for the STAC9205 codec
eg.
ref
dell-m42
dell-m43
dell-m44
eapd
auto
A quick “Google” told me most people had the best result with the eapd option for the STAC9205 codec .
So the Line you put in the “alsa-base.conf” config file…
options snd-hda-intel model=eapd probe_mask=1 position_fix=1
=
options snd-hda-intel model=eapd Told alsa to use the eapd option for the snd-hda-intel sound module.
probe_mask=1 effectively, probes for codec slots missed by the BIOS.
position_fix=1 fixes a DMA (direct memory access) position problem.
See here:
http://www.kernel.org/pub/linux/kernel/people/tiwai/docs/HD-Audio.html
also see:
http://bugtrack.alsa-project.org/main/index.php/Main_Page
Or The short answer - You reconfigured the way your sound card drivers are handled.
Does that help any? 