LinuxQuestions.org
Visit Jeremy's Blog.
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 11-23-2005, 12:16 PM   #1
canislupine
LQ Newbie
 
Registered: Nov 2005
Posts: 11

Rep: Reputation: 0
Unhappy sound on toshiba lappy (slackware 10.1)


running slack 10.1 on a toshiba lappy, tried everything to find a way to get sound working, blacklisted the modem drivers, ran alsaconfig, alsamixer and alsactl store.......... the sound is ac 97, loads the intel8x0 mods.
After blacklisting the modem the sound card is now primary sound =0.
alsaconfig works, everything unmuted, sound all the way up
read a million pages trying to fix it, eyes tired, blood boiling, head about to explode, calling the military to nuke it soon
anyone have this problem and get it fixed?
 
Old 11-23-2005, 12:30 PM   #2
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Welcome to LQ!

I recommend throwing it in a box and mailing it to me. Your problems will be gone!

We usually issue "/sbin/lspci" to determine the actual soundchip, which isn't AC '97:
Code:
bruce@titus:~$ /sbin/lspci
00:14.5 Multimedia audio controller: ATI Technologies Inc SoundMAX Integrated Digital Audio
That is from my Toshiba lappy. It's an A65-S126.
Now let's have a look at our modules, shall we?
Code:
bruce@titus:~$ lsmod | grep snd
snd_pcm_oss            48416  0 
snd_mixer_oss          17408  1 snd_pcm_oss
snd_atiixp             17120  0 
snd_ac97_codec         83452  1 snd_atiixp
snd_pcm                82696  3 snd_pcm_oss,snd_atiixp,snd_ac97_codec
snd_timer              21764  1 snd_pcm
snd                    46436  6 snd_pcm_oss,snd_mixer_oss,snd_atiixp,snd_ac97_codec,snd_pcm,snd_timer
soundcore               7648  1 snd
snd_page_alloc          8712  2 snd_atiixp,snd_pcm
We just wanted the sound modules, that's all. They'll need to be in your
kernel. If you run the stock one, they're already there. If your soundchip
is Intel, then it will be snd_intel8x0 and you can load your modules with:
Code:
root@titus:~# modprobe snd-intel8x0;modprobe snd-pcm-oss;modprobe snd-mixer-oss;modprobe snd-seq-oss
All Intel soundchips are the same, mate ... unless it's recently changed.

Hey, settle down and learn to search with
Google <Linux>
 
Old 11-23-2005, 01:07 PM   #3
canislupine
LQ Newbie
 
Registered: Nov 2005
Posts: 11

Original Poster
Rep: Reputation: 0
lspci

lspci output
00:1f.5 Multimedia audio controller: Intel Corp. 82801DB (ICH4) AC'97 Audio Controller (rev 03)
lsmod output
snd_pcm_oss 46752 0
snd_mixer_oss 16128 1 snd_pcm_oss
ipv6 221312 10
ohci_hcd 18824 0
intel_agp 18716 1
intelfb 28036 0
uhci_hcd 28944 0
ehci_hcd 28420 0
snd_intel8x0 27328 0
snd_ac97_codec 68088 1 snd_intel8x0
snd_pcm 76040 3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec
snd_timer 19588 1 snd_pcm
snd 44900 6 snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
soundcore 6880 1 snd
snd_page_alloc 7428 2 snd_intel8x0,snd_pcm

knew that, just very tired and didn't have laptop handy
 
Old 11-23-2005, 01:41 PM   #4
canislupine
LQ Newbie
 
Registered: Nov 2005
Posts: 11

Original Poster
Rep: Reputation: 0
OK, tried the command u posted, still no sound, but it did change my lsmod output
snd_seq_oss 30080 0
snd_seq_midi_event 6016 1 snd_seq_oss
snd_seq 45200 4 snd_seq_oss,snd_seq_midi_event
snd_seq_device 6924 2 snd_seq_oss,snd_seq
snd_pcm_oss 46752 0
snd_mixer_oss 16128 1 snd_pcm_oss
ipv6 221312 10
ohci_hcd 18824 0
intel_agp 18716 1
intelfb 28036 0
uhci_hcd 28944 0
ehci_hcd 28420 0
snd_intel8x0 27328 1
snd_ac97_codec 68088 1 snd_intel8x0
snd_pcm 76040 4 snd_pcm_oss,snd_intel8x0,snd_ac97_codec
snd_timer 19588 2 snd_seq,snd_pcm
snd 44900 10 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd _timer
soundcore 6880 1 snd
snd_page_alloc 7428 2 snd_intel8x0,snd_pcm
 
Old 11-23-2005, 01:45 PM   #5
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
Issue "cat /dev/urandom > /dev/dsp" and see if sound comes from your speakers.
Be ready to hit Ctrl+C to stop it ... that's random data which sounds nasty.

Gotta leave town, but you need to check alsamixer as user, then alsactl store as root.
 
Old 11-23-2005, 01:51 PM   #6
canislupine
LQ Newbie
 
Registered: Nov 2005
Posts: 11

Original Poster
Rep: Reputation: 0
bash: /dev/dsp: Device or resource busy
good travels, I am always leaving town myself
anyone else have any ideas?
 
Old 11-23-2005, 01:53 PM   #7
canislupine
LQ Newbie
 
Registered: Nov 2005
Posts: 11

Original Poster
Rep: Reputation: 0
and now I have 10-15 instances of arts in ps table............. red phone to military has speed dial
 
  


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
Slackware on Toshiba devit Slackware 8 01-01-2006 08:30 AM
Toshiba Tecra 740CDT, Sound and Slackware 10 statguy Slackware 0 01-01-2005 08:02 PM
toshiba tecra m2 sound issues in slackware 10 somuchfor Linux - Hardware 8 10-25-2004 02:57 PM
Toshiba Sound with Slackware pengStudent Linux - Laptop and Netbook 7 03-22-2004 11:30 PM
Rh9 No Sound On Toshiba Laptop With Ac'97 Sound darkmage224 Linux - Laptop and Netbook 2 02-27-2004 10:23 AM

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

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