LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 05-21-2008, 02:13 AM   #1
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-15.0
Posts: 910

Rep: Reputation: 90
Slack 12.1 - pci sound card


Hi,
How do I disable the motherboard sound and use a pci card only?
I got the pci card working using alsaconf but KDE just wont use it.

When I run 'alsamixer" I get:
alsamixer: function snd_ctl_open failed for default: No such device



It works with my TV card and Amarok. But no system sounds.

Last edited by slackass; 05-21-2008 at 02:30 AM.
 
Old 05-21-2008, 02:37 AM   #2
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-15.0
Posts: 910

Original Poster
Rep: Reputation: 90
Solved:
I rebooted and everything started working.

.......................Oh Magoo, you've dun it again. .. :-)

Last edited by slackass; 05-21-2008 at 10:31 AM.
 
Old 05-21-2008, 05:35 AM   #3
arubin
Senior Member
 
Registered: Mar 2004
Location: Middx UK
Distribution: Slackware64 15.0 (multilib)
Posts: 1,350

Rep: Reputation: 75
You might find an option in the BIOS to disable the on board sound-chip and it is probably worth doing this if you do not want to use it. That is what I have done on my system.
 
Old 05-21-2008, 07:54 AM   #4
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
I have the onboard soundchip disabled in the BIOS of this Asus K8V-X board.
Code:
anna@peter:~$ /sbin/lspci | grep -i multimedia
00:0c.0 Multimedia audio controller: Creative Labs SB Audigy (rev 03) <- PCI soundcard
00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60) <- onboard soundchip
anna@peter:~$ lsmod | grep -i snd
snd_seq_dummy           6660  0
snd_seq_oss            32896  0
snd_seq_midi_event     10112  1 snd_seq_oss
snd_seq                50256  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_pcm_oss            40352  0
snd_mixer_oss          17920  1 snd_pcm_oss
snd_via82xx            26520  0 <- onboard soundchip module
snd_emu10k1           136128  0 <- PCI soundcard module
snd_ac97_codec         98724  2 snd_via82xx,snd_emu10k1
ac97_bus                5760  1 snd_ac97_codec
snd_pcm                72068  4 snd_pcm_oss,snd_via82xx,snd_emu10k1,snd_ac97_codec
gameport               14472  3 snd_via82xx,emu10k1_gp
snd_timer              22532  3 snd_seq,snd_emu10k1,snd_pcm
snd_util_mem            7424  1 snd_emu10k1
snd_page_alloc         11528  3 snd_via82xx,snd_emu10k1,snd_pcm
snd_mpu401_uart        10496  1 snd_via82xx
snd_rawmidi            22560  2 snd_emu10k1,snd_mpu401_uart
snd_hwdep              10756  1 snd_emu10k1
snd_seq_device         10380  5 snd_seq_dummy,snd_seq_oss,snd_seq,snd_emu10k1,snd_rawmidi
snd                    47716  13 snd_seq_oss,snd_seq,snd_pcm_oss,snd_mixer_oss,snd_via82xx,snd_emu10k1,snd_ac97_codec,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_hwdep,snd_seq_device
soundcore               9824  1 snd
Until Slackware-12.1, it's modules did not load. However, it now loads. To
keep the modules from loading I added it to "/etc/modprobe.d/blacklist":
Code:
blacklist snd-via82xx
So now it does not load:
Code:
anna@peter:~$ lsmod | grep -i snd
snd_seq_dummy           6660  0
snd_seq_oss            32896  0
snd_seq_midi_event     10112  1 snd_seq_oss
snd_seq                50256  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_pcm_oss            40352  0
snd_mixer_oss          17920  1 snd_pcm_oss
snd_emu10k1           136128  0
snd_rawmidi            22560  1 snd_emu10k1
snd_ac97_codec         98724  1 snd_emu10k1
ac97_bus                5760  1 snd_ac97_codec
snd_pcm                72068  3 snd_pcm_oss,snd_emu10k1,snd_ac97_codec
snd_seq_device         10380  5 snd_seq_dummy,snd_seq_oss,snd_seq,snd_emu10k1,snd_rawmidi
snd_timer              22532  3 snd_seq,snd_emu10k1,snd_pcm
snd_page_alloc         11528  2 snd_emu10k1,snd_pcm
snd_util_mem            7424  1 snd_emu10k1
snd_hwdep              10756  1 snd_emu10k1
snd                    47716  11 snd_seq_oss,snd_seq,snd_pcm_oss,snd_mixer_oss,snd_emu10k1,snd_rawmidi,snd_ac97_codec,snd_pcm,snd_seq_device,snd_timer,snd_hwdep
soundcore               9824  1 snd
However, even with it loaded, the sound worked fine. Check your volumes
in alsamixer for both sound chips. Muting the onboard should work, also.
 
Old 05-21-2008, 10:35 AM   #5
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-15.0
Posts: 910

Original Poster
Rep: Reputation: 90
Thanks!
After I "thought" I had if fixed the problem came back after another re-boot.

So, as you both suggested, I got in to bios an disabled the on board sound and now everything is once again perfect in happy land.
 
  


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 from sound blaster PCI sound card using mandrake-linux 10.1 box nila56 Linux - Hardware 2 05-29-2006 02:48 PM
Wireless card (in PCI slot) slack ditribution zowey Linux - Hardware 1 04-20-2005 12:55 PM
If you have a PCI sound card, should you disable the on-board sound card? jtp51 Linux - Newbie 1 10-06-2004 10:42 AM
No Sound Solution - BUY NEW PCI Sound Card? SML Fedora 1 03-01-2004 11:12 PM
Diabling onboard sound card and enabling pci slot sound card abhatia Linux - Hardware 4 01-12-2004 02:10 AM

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

All times are GMT -5. The time now is 12:26 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