Comprehensive Sound Problem Solutions Guide
The solution for me involved the following steps:
- Try running:
aplay -l
and get the failure message:aplay: device_list:221: no soundcard found...
- Run
lspci -v
and succeed in finding my sound card:00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 02)
- Figure out through googling that the driver I want is snd-hda-intel.
- Compile the ALSA driver using alsa-source:
sudo apt-get install build-essential linux-headers-$(uname -r) module-assistant alsa-source
sudo dpkg-reconfigure alsa-source- Within the blue dialog box displayed, answer:
- Yes for ISA-PNP
- No for debugging
- Deselect "All" and select the correct driver "hda-intel".
sudo module-assistant a-i alsa-source
- Get no errors ... good luck with that one :).
- Load the sound card driver just compiled:
sudo modprobe snd-hda-intel
- Within this terminal, "aplay -l" now works.
- Ensure that the sound card driver is loaded for all sessions by adding snd-hda-intel to the end of the file /etc/modules.
No comments:
Post a Comment