LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   RedHat 8.0 & Creative Labs SoundBlaster Live! (https://www.linuxquestions.org/questions/linux-newbie-8/redhat-8-0-and-creative-labs-soundblaster-live-50737/)

FUXC 03-19-2003 06:01 PM

RedHat 8.0 & Creative Labs SoundBlaster Live!
 
Hi...I am exremely new to Linux, and just installed RedHat 8.0. Almost everything seems to function great, but I cannot hear any sound. The system reconizes the sound card under the Sound Card Detection...but I get no sound when I click "Play Test Sound." It seems to be somewhat of a common problem because I've seen other people with the same problem. I cannot seem to find a solution that I can follow...like I said, I'm not very savvy with this Linux stuff yet.

Can anyone shed some light on this?

Thanks!
Kev

Texicle 03-20-2003 06:01 PM

Open up a terminal window and type:

ls -l /dev/dsp

You should then see something like this:

crwxr--r-- <bunch of stuff here> /dev/dsp

This shows that only root has Read Write and eXecute permissions. You will want to change this so that your user and groups can access it. You need to be root to do this so now type this:

su -
password: <enter root password here>

chmod 755 /dev/dsp

Now, if you type ls -l /dev/dsp you should see this:

crwxr-xr-x

indicating that you can execute it. /dev/dsp is the sound server that will need to run for you to hear anything. Since we're logged into a terminal as root, you might as well type:

chmod 755 /dev/mixer

to give your users/groups permissions for the sound mixer as well. If this doesn't solve your problem, please post any errors you have here. Also, we'll need to make sure that you've actually set up your sound card. If you log into X as root, can you hear sounds?

Hope this helps.:D


All times are GMT -5. The time now is 02:40 PM.