LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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-24-2005, 02:16 PM   #16
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354

Quote:
Originally posted by dr_angus
# 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
Just reading this thread (no real knowledge re Deb -- I use Fedora), but the change from "-" in your input to "_" in the error message seemed strange to me. Is this something you'd expect to see?
 
Old 10-24-2005, 02:26 PM   #17
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
You should have the modules. What does "dpkg -l |grep alsa" say?

Can you load any modules, or just not the snd ones?

Last edited by makuyl; 10-24-2005 at 02:28 PM.
 
Old 10-24-2005, 02:36 PM   #18
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
# dpkg -l |grep alsa
ii alsa-base 1.0.8-7 ALSA driver configuration files
ii alsa-headers 1.0.8-7 transitional dummy package that can be safel
ii alsa-oss 1.0.8-1 ALSA wrapper for OSS applications
ii alsa-source 1.0.8-7 ALSA driver sources
ii alsa-utils 1.0.8-4 ALSA utilities
 
Old 10-25-2005, 09:14 AM   #19
ssfrstlstnm
Member
 
Registered: Dec 2004
Location: IN, USA
Distribution: debian etch
Posts: 402

Rep: Reputation: 30
I think something is missing from your kernel. Maybe you need to install kernel headers? I'm not sure, I always compile my kernel from source because I need to install the nvidia driver.

Someone else had a similar problem recently which was solved by compiling the kernel. See this thread:

http://www.linuxquestions.org/questi...hreadid=375217
 
Old 10-25-2005, 01:22 PM   #20
makuyl
Senior Member
 
Registered: Dec 2004
Location: Helsinki
Distribution: Debian Sid
Posts: 1,107

Rep: Reputation: 54
It could also be the oss module being in the way. Add "skip i810_audio" to /etc/discover.conf and "i810_audio" to /etc/hotplug/blacklist.d/alsa-base and reboot to see what happens. Or just rmmod the i810_audio module and try alsaconf.
 
Old 10-25-2005, 03:34 PM   #21
noxious
Member
 
Registered: May 2004
Location: Ohio, USA
Distribution: LinuxMint Gloria, Ubuntu 9.10
Posts: 299

Rep: Reputation: 30
# dpkg -l |grep alsa
ii alsa-base 1.0.8-7 ALSA driver configuration files
ii alsa-headers 1.0.8-7 transitional dummy package that can be safel
ii alsa-oss 1.0.8-1 ALSA wrapper for OSS applications
ii alsa-source 1.0.8-7 ALSA driver sources
ii alsa-utils 1.0.8-4 ALSA utilities


You've also got a mixture of alsa packages... maybe start over with a fresh alsa recompile...?
 
Old 10-25-2005, 10:30 PM   #22
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
ok, here's an update: i re-installed the kernel and alsa through apt-get, and I think it got better, but it still doesn't work.

Whenever I run alsaconf now, it shows a scanning progress bar, but still doesn't find anything, better than before, where no progress bar would appear, and errors would appear on the console(ex. modinfo: could not find module snd
modinfo: could not find module snd-opl3sa2 )
Now I try to # modprobe snd-azx, I still get:
FATAL: Module snd_azx not found.
FATAL: Error running install command for snd_azx
but all other modules load fine, exept modprobe snd-hda-intel, but still no sound comes out, and alsaconf finds nothing.
I did to change /etc/discover.conf, but that didn't work either.
I'm going to install alsa from source tomorow see if I have any luck with that. Should I remove the deb pakcages first, or is it fine if I leave them?
Thanks for the help so far guys, if you have any more sugestions please let me know
 
Old 10-26-2005, 11:08 PM   #23
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
I would like to announce...

I have sound.

http://www.realtek.com.tw/downloads/downloads1-3.aspx?Keyword=8180

this page has a linux installer. It's basicaly alsa-driver, alsa-lib, and alsa-utils source packages with a convinient "install" script. All it does is compile the packages with the right modules, and run alsa-conf.
I actualy tried this installer before, but it failed, probably because of a compiling error. Because of the script it just plowed right through, without letting me know. Thankfuly, when I was trying to build manualy from source, I managed to fix these requirements, utill I ran into some other crap and decided to try the installer again.
Thanks to you all VERY much for helping a brotha out (man, wheres the kissy smiley?)
 
Old 10-27-2005, 02:57 PM   #24
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
crap, sound broke again.
when it worked, i ran alsa mixer, and I punched up the volumes for the front, rear and surround channels, and there was sound!
I shut down, and when I came back, sound was broke again. I tried runing alsa mixer, and there was only the master volume and the front chanel, and turning both of them does nothing. I tried re-instaling from apt-get, source, the cool installer, and a combination of them, but with no success.
Does anyone have any ideas?
 
Old 10-27-2005, 08:07 PM   #25
ssfrstlstnm
Member
 
Registered: Dec 2004
Location: IN, USA
Distribution: debian etch
Posts: 402

Rep: Reputation: 30
Are the modules loaded? Try lsmod and look for the snd mods. If they are not there, you should try to load them with modprobe. You can put the names of modules that you want to load at boot time in /etc/modules.

Or just run alsaconf and it'll load the modules for you.
 
Old 10-27-2005, 09:54 PM   #26
dr_angus
LQ Newbie
 
Registered: Sep 2004
Location: Hurricane Country U.S.A.
Posts: 18

Original Poster
Rep: Reputation: 0
fixed it by recompiling with ./confiugre "--with-cards=all --with-sequencer=yes"
and ran "alsactl store" so the confs don't go bye bye on me again.

One thing though, I can't seem to get multiple programs to run with sound. Is there a way around that?
 
  


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 04:53 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