Debian This forum is for the discussion of Debian Linux.
|
| 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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-03-2005, 09:14 AM
|
#1
|
|
LQ Newbie
Registered: Feb 2004
Posts: 29
Rep:
|
sound not working, sarge with alsa installed
I just installed ALSA via apt-get and ran alas-conf but there is no sound. It detected the card fine (it's a creative audigy 2) and made a popping noise over the speakers while running alsa-conf. it looks like it's playing sound, but i hear nothing... no error or anything.
|
|
|
|
07-03-2005, 09:32 AM
|
#2
|
|
Member
Registered: Sep 2004
Distribution: Debian Etch
Posts: 179
Rep:
|
Please do some searching in this forum before posting these questions. Almost the same question was posted a few days ago (it is actually still on the first topics-page). Check this topic and especially 'Dead Parrot's answer: Sound won't work in Sarge
|
|
|
|
07-03-2005, 09:33 AM
|
#3
|
|
Senior Member
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170
Rep:
|
Do you get sound as root?
|
|
|
|
07-03-2005, 10:00 AM
|
#4
|
|
LQ Newbie
Registered: Feb 2004
Posts: 29
Original Poster
Rep:
|
i did search, if you read the post you're referencing you'd see that he had a 2.4 kernel, an error message, and ALSA not installed. i'm already running 2.6, I installed ALSA, have no error message, and checked the mute setting in alsa-mixer first. so this is what i like to call "a different problem."
and i do not appear to have sound as root either.
|
|
|
|
07-03-2005, 10:12 AM
|
#5
|
|
Senior Member
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170
Rep:
|
Do you have the proper sound modules loaded? You can check with "lsmod"
|
|
|
|
07-03-2005, 10:16 AM
|
#6
|
|
LQ Newbie
Registered: Feb 2004
Posts: 29
Original Poster
Rep:
|
Code:
snd_emu10k1 80776 2
snd_rawmidi 23204 1 snd_emu10k1
snd_pcm_oss 48168 1
snd_mixer_oss 16640 1 snd_pcm_oss
snd_pcm 85384 2 snd_emu10k1,snd_pcm_oss
snd_timer 23300 1 snd_pcm
snd_seq_device 7944 2 snd_emu10k1,snd_rawmidi
snd_ac97_codec 59268 1 snd_emu10k1
snd_page_alloc 11144 2 snd_emu10k1,snd_pcm
snd_util_mem 4608 1 snd_emu10k1
snd_hwdep 9092 1 snd_emu10k1
snd 50660 12 snd_emu10k1,snd_rawmidi,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_seq_device,snd_ac97_codec,snd_util_mem,snd_hwdep
soundcore 9824 2 snd
i have all these sound related modules
|
|
|
|
07-03-2005, 10:26 AM
|
#7
|
|
Member
Registered: Sep 2004
Distribution: Debian Etch
Posts: 179
Rep:
|
You didn't mention in your first post that you configured the alsa-mixer and that you had run the 'alsactl store' command. That's why I assumed you hadn't read the post.
Can you give some more info?? What kind of soundcard do you have, etc. Do you have the right permissions set on the sound devices. Do you have al the necessary kernel-modules loaded??
|
|
|
|
07-03-2005, 10:30 AM
|
#8
|
|
LQ Newbie
Registered: Feb 2004
Posts: 29
Original Poster
Rep:
|
it's a creative audigy 2. the sound doesn't work as root either, so i don't think it's a permissions thing, which files would i have to check, and which kernel modules should be installed?
|
|
|
|
07-03-2005, 11:09 AM
|
#9
|
|
Senior Member
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170
Rep:
|
I don't have that card but a bit of googling suggests that maybe you want to try removing the snd-emu10k1 and insert the module 'emu10k1'
|
|
|
|
07-03-2005, 11:37 AM
|
#10
|
|
LQ Newbie
Registered: Feb 2004
Posts: 29
Original Poster
Rep:
|
where would i get the other module? i looked at the emu10k1 driver project at sourceforge, and it seems much less up t o date than the alsa driver...
|
|
|
|
07-03-2005, 02:01 PM
|
#11
|
|
Member
Registered: Nov 2003
Location: Ohio
Distribution: Debian Unstable
Posts: 460
Rep:
|
you would do
Code:
# rmmod snd-emu10k1
# modprobe emu10k1
if that works correctly, then you would add snd-emu10k1 to /etc/hotplug/blacklist and emu10k1 to /etc/modules
|
|
|
|
07-03-2005, 03:30 PM
|
#12
|
|
LQ Newbie
Registered: Feb 2004
Posts: 29
Original Poster
Rep:
|
that worked! thanks a lot, i'll put the one without the snd_ in front of it in etc/modules and see if it works after reboot
|
|
|
|
07-03-2005, 06:19 PM
|
#13
|
|
Senior Member
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170
Rep:
|
Glad to see that was the right direction
It should just work now.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 06:24 AM.
|
|
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
|
|