Have you checked what modules are used with your current laptop? "Altec Lansing" is the speaker brand, not the chipset.
For showing the used sound modules start the konsole, and use the following command to list the sound modules
- Code: Select all
lsmod | grep snd
My guess is that it will show you snd_intel_hda to be used. (At least it does on my dv6 laptop)
If that's the case, try to create the file /etc/modprobe.d/alsa-base.conf and add something like
- Code: Select all
options snd-hda-intel model=laptop
You might have to try something else than laptop. On the alsa wiki there is a link to a list of known models:
http://www.mjmwired.net/kernel/Documentation/sound/alsa/HD-Audio-Models.txtUnfortunately I am not sure which one you should choose. It depends on the actual hardware chipset in the laptop.
To get some more info on your audio hardware you can use: (run as root)
- Code: Select all
lspci -v | grep -A 10 -i audio
The following is from my desktop, just to give you an idea of what is displayed: (I am not at my laptop right now

)
- Code: Select all
[root@Host]# lsmod |grep -i snd
snd_hda_codec_realtek 62745 1
snd_hda_intel 34194 5
snd_hda_codec 102453 2 snd_hda_codec_realtek,snd_hda_intel
snd_hwdep 6428 1 snd_hda_codec
snd_pcm 78146 2 snd_hda_codec,snd_hda_intel
snd_page_alloc 7426 2 snd_pcm,snd_hda_intel
snd_timer 18934 1 snd_pcm
snd 60156 16 snd_hda_codec_realtek,snd_hwdep,snd_timer,snd_pcm,snd_hda_codec,snd_hda_intel
soundcore 5442 1 snd
[root@Host]# lspci -v |grep -A 10 -i audio
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 05)
Subsystem: ASRock Incorporation Device 2892
Flags: bus master, fast devsel, latency 0, IRQ 60
Memory at fb600000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00
Capabilities: [100] Virtual Channel
Capabilities: [130] Root Complex Link
Kernel driver in use: snd_hda_intel