Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
04-29-2006, 05:09 AM
|
#1
|
Member
Registered: Feb 2005
Location: internet
Distribution: Debian
Posts: 821
Rep:
|
sound card driver problem in intel 915 chip set
I have installed debian 3.1 r1 in my pc..which has intel P4 915 chipset.
After install i have noticed that no sound..I gave #alsaconf which fails to detect the card..#alsamixer gives an error.
I thing that intel 915 have RealTech semicondutor Inc.Sound chipset.
Which one i prefer either ALSA OR OSS Like Open Sound Syetm.Pls help out.
|
|
|
04-29-2006, 11:45 AM
|
#2
|
Senior Member
Registered: Feb 2006
Location: Seattle, WA: USA
Distribution: Slackware 11.0
Posts: 1,191
Rep:
|
I had a similar problem. For some reason alsaconf like everything to be compiled as a module in the kernel. Reconfigure your kernel and configure everything related to sound, alsa, and your sound card, into a module. This includes the core "sound support". After that's done, try running alsaconf again and then alsamixer to set the sound levels.
regards,
...drkstr
|
|
|
05-01-2006, 01:39 AM
|
#3
|
Member
Registered: Feb 2005
Location: internet
Distribution: Debian
Posts: 821
Original Poster
Rep:
|
oh can u please put it in a simple way.I mean By example.looks hard to me.
|
|
|
05-01-2006, 09:11 AM
|
#4
|
LQ Guru
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Rep:
|
I would start by figuring out what sound card you actually have.. a lot of the Intel chipsets have sound built in and would not be using the RealTech as you listed above..
use lspci to list your devices to find out what sound card you actually have..
Code:
itg-debian:/proc# lspci
0000:00:00.0 Host bridge: Intel Corp. 82815 815 Chipset Host Bridge and Memory Controller Hub (rev 02)
0000:00:02.0 VGA compatible controller: Intel Corp. 82815 CGC [Chipset Graphics Controller] (rev 02)
0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 02)
0000:00:1f.0 ISA bridge: Intel Corp. 82801BA ISA Bridge (LPC) (rev 02)
0000:00:1f.1 IDE interface: Intel Corp. 82801BA IDE U100 (rev 02)
0000:00:1f.2 USB Controller: Intel Corp. 82801BA/BAM USB (Hub #1) (rev 02)
0000:00:1f.3 SMBus: Intel Corp. 82801BA/BAM SMBus (rev 02)
0000:00:1f.4 USB Controller: Intel Corp. 82801BA/BAM USB (Hub #2) (rev 02)
0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801BA/BAM AC'97 Audio (rev 02)
0000:01:07.0 Ethernet controller: 3Com Corporation 3c905B 100BaseTX [Cyclone] (rev 64)
A quick Google search shows me that the 82801BA is the Intel ICH2.
Just out of curiosity are you running the 2.6 Kernel ? I had difficultes with my onboard intel audio with the older kernel.. check to see if you are at least running the 2.6 kernel.
uname -a
Code:
itg-debian:/proc# uname -a
Linux itg-debian 2.6.8-2-386 #1 Tue Aug 16 12:46:35 UTC 2005 i686 GNU/Linux
Now lets check if the sound modules are loaded or not.. use lsmod..
Code:
itg-debian:/proc# lsmod | grep snd
snd_intel8x0 33068 1
snd_ac97_codec 59268 1 snd_intel8x0
snd_pcm_oss 48168 0
snd_mixer_oss 16640 2 snd_pcm_oss
snd_pcm 85384 2 snd_intel8x0,snd_pcm_oss
snd_timer 23300 1 snd_pcm
snd_page_alloc 11144 2 snd_intel8x0,snd_pcm
gameport 4736 1 snd_intel8x0
snd_mpu401_uart 7296 1 snd_intel8x0
snd_rawmidi 23204 1 snd_mpu401_uart
snd_seq_device 7944 1 snd_rawmidi
snd 50660 9 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device
soundcore 9824 2 snd
the important module here is probably snd_intel8x0
if you didn't get a lsting similar to the one above you can try to load the module manually
modprobe snd_intel8x0
if you have a soundchip other than the intel you can look up the proper module here: http://www.alsa-project.org/alsa-doc/
|
|
|
05-01-2006, 09:38 AM
|
#5
|
Member
Registered: Feb 2005
Location: internet
Distribution: Debian
Posts: 821
Original Poster
Rep:
|
yes.I thing the sound chip buildin in board.And im using the same kernel as u.(2.6.8-4)
The thing is, i ve tryied loading intel8x0.ko before staring this thread.
the modules loads well.But still the sound is not working.
The sound is ok in windows Xp box.the system details from the windows shows that i m using Realtek semicondunctor Inc. Enlightenment sound system.
i ran alsaconfig it fails after i loaded a intel8x0 module.
where goes wrong.Or upgrading kernel is my solution?
thank you.
|
|
|
05-02-2006, 12:00 AM
|
#6
|
LQ Guru
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Rep:
|
lspci would confirm the sound card.. could you post the output please ?
Won't make any progress inf we are trying to load the wrong module...
|
|
|
05-02-2006, 03:08 AM
|
#7
|
Senior Member
Registered: Feb 2006
Location: Seattle, WA: USA
Distribution: Slackware 11.0
Posts: 1,191
Rep:
|
also, please copy and paste the results of 'lsmod'. We will be able to help you better with this information.
regards,
...drkstr
|
|
|
10-07-2006, 03:01 AM
|
#8
|
LQ Newbie
Registered: Oct 2006
Distribution: Debian
Posts: 3
Rep:
|
Hi, I've been following this thread because I have the same problem as Bruse. In my case, it is a Dell Dimension Desktop with an inboard Intel soundcard which works under Win XP Pro, but not under Debian 2.6 (stable installation by Synaptic). The various mixer programs acknowledge that I have an Intel sound card, and nothing is shown as muted. However, I don't hear any sound through my headphones (no speakers connected). And yes, the same headphones do work on the same machine under Windows. The last thing you asked Bruse were for his lspci and lsmod. If I append mine here, would anybody care to give me pointers where I might look next?
Thanks
delldimension:~# uname -a
Linux delldimension 2.6.8-2-386 #1 Tue Aug 16 12:46:35 UTC 2005 i686 GNU/Linux
delldimension:~# lspci
0000:00:00.0 Host bridge: Intel Corp. 82845G/GL[Brookdale-G]/GE/PE DRAM Controller/Host-Hub Interface (rev 01)
0000:00:02.0 VGA compatible controller: Intel Corp. 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01)
0000:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01)
0000:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01)
0000:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01)
0000:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCIController (rev 01)
0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 81)
0000:00:1f.0 ISA bridge: Intel Corp. 82801DB/DBL (ICH4/ICH4-L) LPC Bridge (rev 01)
0000:00:1f.1 IDE interface: Intel Corp. 82801DB/DBL (ICH4/ICH4-L) UltraATA-100 IDE Controller (rev 01)
0000:00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 01)
0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01)
0000:01:09.0 Ethernet controller: Broadcom Corporation BCM4401 100Base-T (rev 01)
delldimension:~# lsmod | grep snd
snd_intel8x0 33068 10
snd_ac97_codec 59268 1 snd_intel8x0
snd_pcm_oss 48168 0
snd_mixer_oss 16640 10 snd_pcm_oss
snd_pcm 85384 2 snd_intel8x0,snd_pcm_oss
snd_timer 23300 1 snd_pcm
snd_page_alloc 11144 2 snd_intel8x0,snd_pcm
gameport 4736 1 snd_intel8x0
snd_mpu401_uart 7296 1 snd_intel8x0
snd_rawmidi 23204 1 snd_mpu401_uart
snd_seq_device 7944 1 snd_rawmidi
snd 50660 11 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi, snd_seq_device
soundcore 9824 10 snd
|
|
|
10-08-2006, 03:26 AM
|
#9
|
Member
Registered: Feb 2005
Location: internet
Distribution: Debian
Posts: 821
Original Poster
Rep:
|
Hi my probles are solved long time b4 using latest kernels..like 2.6.12 or 2.6.15...
My Intel HDA(High Definition Audio) is supported by *snd-hda-intel* sound module.
all the best.
|
|
|
All times are GMT -5. The time now is 09:02 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|