LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 10-22-2005, 09:02 PM   #1
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Rep: Reputation: 0
ALSA can't find my integrated AC97 Sound Card


hey guys,

I googled and searched these forums for solutions to my problem, but I only found similar problems that did not solve mine. When I run alsaconf, it tells me no PnP or PCI cards were found. So I tell it to probe legacy chips, it does its thing, says ok, I press enter, and sound still doesn't work.

does anybody have any ideas on what to do?
 
Old 10-23-2005, 03:02 AM   #2
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
Post some hardware details like make and model of sound card, desktop or laptop, and the audio part of "lspci -v"
 
Old 10-23-2005, 07:52 AM   #3
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
It's a built in Realtek 8-chanel sound card on a destop mobo

0000:00:1b.0 0403: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03)
Subsystem: Foxconn International, Inc.: Unknown device 0c22
Flags: bus master, fast devsel, latency 0, IRQ 169
Memory at d0100000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Capabilities: [60] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable-
Capabilities: [70] #10 [0091]

EDIT: My bad, took out all but the audio part of lspci -v


Last edited by dr_angus; 10-23-2005 at 08:54 AM.
 
Old 10-23-2005, 11:41 AM   #4
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
apt-get install alsa-base alsa-oss alsa-utils
if you use a 2.6 kernel. If 2.4 apt-get alsa-drivers from the alsa-modules package as well, and get the version matching your kernel, but 2.6 has better hardware support.
Forgot to ask which distro your using though. Sarge?
Also try to set pnp off in the bios.

Last edited by makuyl; 10-23-2005 at 11:42 AM.
 
Old 10-23-2005, 12:53 PM   #5
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
all those packages werealready installed
i'm using the 2.6 kernel, and I think Sarge
 
Old 10-23-2005, 01:14 PM   #6
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
That chipset seems to be using the snd-azx module for alsa. See if you can load it with: modprobe snd-azx
then run alsaconf again. If it doesn't work, see with lsmod what snd- modules are loaded.

EDIT:
Sarge seems to use 1.0.8 alsa, but 1.0.9 would be better at detecting this chipset.
apt-get install alsa-source/testing
will get you a newer source, read the documentation within on how to compile and install.
Hope you have at least two kernels before experimenting with this one

Last edited by makuyl; 10-23-2005 at 01:19 PM.
 
Old 10-23-2005, 01:26 PM   #7
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
I don't have ANY snd modules loaded. How do I load one?
 
Old 10-23-2005, 01:39 PM   #8
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
modprobe snd-azx
See what's available with: modprobe snd<tab><tab>
 
Old 10-23-2005, 01:59 PM   #9
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
# modprobe snd-azx
FATAL: Module snd_azx not found.
FATAL: Error running install command for snd_azx

I try modprobe -l snd, and it returns nothing
 
Old 10-23-2005, 02:18 PM   #10
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
You can try different modules:
modprobe snd-intel8x0
modprobe snd-pcm-oss
modprobe snd-mixer-oss
modprobe snd-seq-oss
Then test sound with: play /path/to/some-mp3_or_ogg
or why not with: cat /dev/urandom > /dev/dsp (ctrl-c quits)

If it won't work try:
rmmod snd-intel8x0
modprobe snd-hda-intel

Still no sound: try compiling alsa http://www.linuxquestions.org/questi...05/05/4/317158
and use the "./configure --with-cards=azx" about 2/3 down on the page.

Did you test which modules you have with "modprobe snd<tab><tab>"?
 
Old 10-24-2005, 11:46 AM   #11
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
Whenever I try to modprobe any of the cards you listed, I get,

FATAL: Module *something* not found.
FATAL: Error running install command for *something*

# rmmod snd-intel8x0
ERROR: Module snd_intel8x0 does not exist in /proc/modules

tried compiling ALSA, but when i do ./configure --with-cards=azx, it gives me:
checking for which soundcards to compile driver for... configure: error: Unknown soundcard azx

I tried compiling with other cards, but it gives me the same error. I finaly tried compiling with cards=all, but when I modprobed, it still gave me the same error (FATAL: Module *something* not found.
FATAL: Error running install command for *something*)

modprobe snd<tab><tab> gives me:
modprobe modprobe.Lmodutils modprobe.modutils
 
Old 10-24-2005, 12:15 PM   #12
ssfrstlstnm
Member
 
Registered: Dec 2004
Location: IN, USA
Distribution: debian etch
Posts: 402

Rep: Reputation: 30
You shouldn't have to compile alsa. If you have installed the alsa packages listed above with apt, that should be all you need. FYI the switch would be --with-cards=snd_azx.

Maybe you don't have support for alsa in your kernel. Did you compile it yourself or are you using a prebuilt kernel image?

Look in /boot for a file named something like .config

Then post the out put of (change .config to whatever your config file is):

cat /boot/.config | grep alsa
 
Old 10-24-2005, 12:34 PM   #13
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
--with-cards=snd_azx still gives configure: error: Unknown soundcard azx

I used the prebuilt kernel image 2.6.8-2-386

cat /boot/config-2.6.8-2-386 | grep alsa, and cat /boot/.config | grep alsa, both return nothing

EDIT: this might help,
whenever I run alsaconf, it outputs this into the terminal:
modinfo: could not find module snd
modinfo: could not find module snd
modinfo: could not find module snd
modinfo: could not find module snd-opl3sa2
modinfo: could not find module snd-cs4236
modinfo: could not find module snd-cs4232
modinfo: could not find module snd-cs4231
modinfo: could not find module snd-es18xx
modinfo: could not find module snd-es1688
modinfo: could not find module snd-sb16
modinfo: could not find module snd-sb8

Last edited by dr_angus; 10-24-2005 at 01:07 PM.
 
Old 10-24-2005, 01:52 PM   #14
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
Try: grep SND /boot/config-2.6.8-2-386
 
Old 10-24-2005, 01:56 PM   #15
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_SEQUENCER=m
CONFIG_SND_SEQ_DUMMY=m
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_RTCTIMER=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_MPU401_UART=m
CONFIG_SND_OPL3_LIB=m
CONFIG_SND_OPL4_LIB=m
CONFIG_SND_VX_LIB=m
CONFIG_SND_DUMMY=m
CONFIG_SND_VIRMIDI=m
CONFIG_SND_MTPAV=m
CONFIG_SND_SERIAL_U16550=m
CONFIG_SND_MPU401=m
CONFIG_SND_AD1816A=m
CONFIG_SND_AD1848=m
CONFIG_SND_CS4231=m
CONFIG_SND_CS4232=m
CONFIG_SND_CS4236=m
CONFIG_SND_ES968=m
CONFIG_SND_ES1688=m
CONFIG_SND_ES18XX=m
CONFIG_SND_GUSCLASSIC=m
CONFIG_SND_GUSEXTREME=m
CONFIG_SND_GUSMAX=m
CONFIG_SND_INTERWAVE=m
CONFIG_SND_INTERWAVE_STB=m
CONFIG_SND_OPTI92X_AD1848=m
CONFIG_SND_OPTI92X_CS4231=m
CONFIG_SND_OPTI93X=m
CONFIG_SND_SB8=m
CONFIG_SND_SB16=m
CONFIG_SND_SBAWE=m
CONFIG_SND_SB16_CSP=y
CONFIG_SND_WAVEFRONT=m
CONFIG_SND_ALS100=m
CONFIG_SND_AZT2320=m
CONFIG_SND_CMI8330=m
CONFIG_SND_DT019X=m
CONFIG_SND_OPL3SA2=m
CONFIG_SND_SGALAXY=m
CONFIG_SND_SSCAPE=m
CONFIG_SND_AC97_CODEC=m
CONFIG_SND_ALI5451=m
CONFIG_SND_ATIIXP=m
CONFIG_SND_AU8810=m
CONFIG_SND_AU8820=m
CONFIG_SND_AU8830=m
CONFIG_SND_AZT3328=m
CONFIG_SND_BT87X=m
CONFIG_SND_CS46XX=m
CONFIG_SND_CS46XX_NEW_DSP=y
CONFIG_SND_CS4281=m
CONFIG_SND_EMU10K1=m
CONFIG_SND_KORG1212=m
CONFIG_SND_MIXART=m
CONFIG_SND_NM256=m
CONFIG_SND_RME32=m
CONFIG_SND_RME96=m
CONFIG_SND_RME9652=m
CONFIG_SND_HDSP=m
CONFIG_SND_TRIDENT=m
CONFIG_SND_YMFPCI=m
CONFIG_SND_ALS4000=m
CONFIG_SND_CMIPCI=m
CONFIG_SND_ENS1370=m
CONFIG_SND_ENS1371=m
CONFIG_SND_ES1938=m
CONFIG_SND_ES1968=m
CONFIG_SND_MAESTRO3=m
CONFIG_SND_FM801=m
CONFIG_SND_FM801_TEA575X=m
CONFIG_SND_ICE1712=m
CONFIG_SND_ICE1724=m
CONFIG_SND_INTEL8X0=m
CONFIG_SND_INTEL8X0M=m
CONFIG_SND_SONICVIBES=m
CONFIG_SND_VIA82XX=m
CONFIG_SND_VX222=m
CONFIG_SND_USB_AUDIO=m
CONFIG_SND_VXPOCKET=m
CONFIG_SND_VXP440=m
CONFIG_SND_PDAUDIOCF=m
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
No Sound on Slackware 10.1 With VIA VT1612A AC97 2.2 Integrated Soundcard necrozen Linux - Hardware 24 10-17-2005 02:43 PM
Having trouble with an AC97 with an integrated sound card? Check here typho Linux - Hardware 0 10-13-2004 11:11 PM
ESD And ALSA Can't find my sound card! enigma Z Linux - Software 6 09-17-2004 10:09 PM
alsa refuses to find my sound card :(( a3Rogue Linux - Newbie 5 06-19-2004 07:44 PM
Can't recognize/find my onboard sound card. Need help setting up ALSA. cmack Linux - Hardware 2 11-15-2003 10:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian

All times are GMT -5. The time now is 11:00 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration