LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-18-2007, 10:11 PM   #1
ki2002rom
LQ Newbie
 
Registered: Feb 2007
Posts: 3

Rep: Reputation: 0
Automatic detection of the sound card did not work.


Audio config showed Cirrus, Model Logic CS 4610/11, module snd-cs46xx. However no sound. Loaded Fedora Core 6.

Thnaks for help!
 
Old 02-19-2007, 11:14 AM   #2
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,215

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Did you bring up a mixer and make sure the volume is turned up, and not muted?

If yes, run the command '/sbin/lsmod | grep snd' ( without the quotes and post the results. As well as the sound driver, your should see several other lines. Here is an example.

Code:
snd_seq_dummy           2532  0
snd_seq_oss            31136  0
snd_seq_midi_event      5696  1 snd_seq_oss
snd_seq                46960  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_pcm_oss            48960  0
snd_mixer_oss          16896  1 snd_pcm_oss
snd_es18xx             27208  3
snd_pcm                79784  4 snd_pcm_oss,snd_es18xx
snd_page_alloc          8392  1 snd_pcm
snd_opl3_lib            8672  1 snd_es18xx
snd_timer              20548  3 snd_seq,snd_pcm,snd_opl3_lib
snd_hwdep               6848  1 snd_opl3_lib
snd_mpu401_uart         5664  1 snd_es18xx
snd_rawmidi            19616  1 snd_mpu401_uart
snd_seq_device          6828  5 snd_seq_dummy,snd_seq_oss,snd_seq,snd_opl3_lib,snd_rawmidi
snd                    46116  16 snd_seq_oss,snd_seq,snd_pcm_oss,snd_mixer_oss,snd_es18xx,snd_pcm,snd_opl3_lib,snd_timer,snd_hwdep,snd_mpu401_uart,snd_rawmidi,snd_seq_device
soundcore               7008  1 snd
 
Old 02-19-2007, 11:27 AM   #3
geerkuser
LQ Newbie
 
Registered: Feb 2007
Distribution: Fedora Core 6
Posts: 6

Rep: Reputation: 0
Sound Not working

Hi,
I see a similar problem. I'm running Fedora Core 6 with 2.6.18-1.2798.fc6 kernel.

The built in sound card is detected.

--------- o/p of lspci --------------
00:1f.5 Multimedia audio controller: Intel Corporation 82801BA/BAM AC'97 Audio (rev 12)
-------------------------------------

If I do a lsmod, I do see the sound drivers being loaded. But still no sound.

--------- o/p of lsmod --------------
root@localhost etc]# lsmod | grep snd
snd_rtctimer 7501 0
snd_intel8x0 36445 1
snd_ac97_codec 94945 1 snd_intel8x0
snd_ac97_bus 6593 1 snd_ac97_codec
snd_seq_dummy 8133 0
snd_seq_oss 37057 0
snd_seq_midi_event 11841 1 snd_seq_oss
snd_seq 57137 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
snd_seq_device 12621 3 snd_seq_dummy,snd_seq_oss,snd_seq
snd_pcm_oss 46561 0
snd_mixer_oss 20673 1 snd_pcm_oss
snd_pcm 80453 3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss
snd_timer 27077 3 snd_rtctimer,snd_seq,snd_pcm
snd 57029 11 snd_intel8x0,snd_ac97_codec,snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd _timer
soundcore 14113 1 snd
snd_page_alloc 14281 2 snd_intel8x0,snd_pcm
-------------------------------------------

I'm not sure about the modprobe.conf file and was curious if this was right. 'Cause during setup of Fedora after it did the sound test, it asked me if I was able to hear the sound, and I said 'no'. It returned an error saying something like 'sound card not working...has to be configured manually'

I'm attaching my modprobe.conf file

alias eth0 8139too
alias snd-card-0 snd-intel8x0
options snd-card-0 index=0
options snd-intel8x0 index=0
remove snd-intel8x0 { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0

If I put a audio CD into drive, it starts playing, but no sound.

Any suggestions please ?

Thanks
 
Old 02-19-2007, 12:45 PM   #4
ki2002rom
LQ Newbie
 
Registered: Feb 2007
Posts: 3

Original Poster
Rep: Reputation: 0
camorri

Where do i type in the command you suggested?
 
Old 02-19-2007, 06:29 PM   #5
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,215

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
You open a konsole. In linux there are several and what is installed depends on, your distro, and the choices you made when you installed. It may be called slightly different things, like terminal, or linux console. Look for one. You know you are there if it looks like a dos window.
 
  


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
Automatic detection of Sound Card did not work !!! casper_nid Linux - Newbie 2 05-30-2006 03:56 PM
Automatic detection of Sound Card did not work !!! casper_nid Linux - Hardware 1 05-30-2006 05:07 AM
Automatic detection of the sound card did not work mulan Linux - Networking 8 09-14-2005 09:04 PM
Automatic detection of the sound card did not work ravihadimani Linux - Hardware 1 01-28-2005 10:58 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:58 AM.

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