Jump to content

Spring 2007 Creative Audigy soundcards - no sound


Milo
 Share

Recommended Posts

I have a Creative Soundblaster Audigy SE Value and it didn work under 1007.1 or Spring (But did under 2006!) If you have this problem then mute "audigy analog/digital output jack" in KMix ?witches tab - also see http://wiki.mandriva.com/en/Docs/Hardware#SB_Live. It took me a while to distill the correct fix for my sound card from all the post on the internet.

 

You might also try this (which worked for me in 2007.1 but not Spring):

Running and unmuting

 

Since we're Linux users, we don't want to reboot. So we'll start the alsasound script manually.

 

Code listing 3.2

 

# /etc/init.d/alsasound start

 

ALSA is running now. If everything is ok, you should be able to see the ALSA modules loaded when running lsmod. However, sound won't work yet, because the channels are still muted. We need amixer for this.

 

Code listing 3.3: Running amixer

 

# amixer

 

Warning: You shouldn't get this, but if you get an error about "amixer: Mixer attach default error: No such file or directory", you should manually modprobe snd-mixer-oss and snd-pcm-oss once. After that run amixer again.

 

Code listing 3.4: only if you get an error when running amixer

 

# modprobe snd-mixer-oss

# modprobe snd-pcm-oss

# amixer

 

If you got this far, now unmute Master and PCM channels. Some hardware even requires you to unmute the center channel or even the surround channel.

 

Code listing 3.5: Unmuting channels

 

# amixer set Master 100 unmute

# amixer set PCM 100 unmute

Only if the above doesn't succeed on its own:

# amixer set Center 100 unmute

# amixer set Surround 100 unmute

Test the sound:

# aplay $KDEDIR/share/sounds/pop.wav // (pop.wav is part of KDE)

 

We check to see if sound is working by using the aplay (alsa play) command. If you hear a pop, then sound is indeed working. Then, adjust the volume settings to your liking; the ncurses-based alsamixer is a great way to get them "just so".

 

You may want to emerge alsa-xmms as that will provide ALSA support for XMMS.

When you reboot your system, the alsasound init script will properly save and restore your volume settings.

 

Anyway, HTH.

 

Milo.

 

 

[moved from Hardware by spinynorman]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...