LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Games
User Name
Password
Linux - Games This forum is for all discussion relating to gaming in Linux.

Notices


Reply
  Search this Thread
Old 01-22-2006, 12:52 PM   #1
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Rep: Reputation: 77
No Sound in UT2004


I just installed UT2004 on my fresh install of Debian Linux. Everything went smooth however when I start the game, I get no audio at all. During the intro where the guy smashes the Nvidia logo to basic game play - it's completely mute. When I exit the game back to Gnome, I have full audio and video with no problems. I went into the game "audio" and everything looked fine I guess.

Can anyone help me get audio on UT2004?
 
Old 01-22-2006, 02:12 PM   #2
ilikejam
Senior Member
 
Registered: Aug 2003
Location: Glasgow
Distribution: Fedora / Solaris
Posts: 3,109

Rep: Reputation: 97
Hi.

Try doing 'killall -9 esd' and 'killall -9 artsd' before you start UT.

Dave
 
Old 01-22-2006, 04:23 PM   #3
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Quote:
Originally Posted by ilikejam
Hi.

Try doing 'killall -9 esd' and 'killall -9 artsd' before you start UT.

Dave
Code:
carlos@striker:~$ killall -9 esd
esd: no process killed
carlos@striker:~$ killall -9 artsd
artsd: no process killed
Still no sound
 
Old 01-22-2006, 04:41 PM   #4
ilikejam
Senior Member
 
Registered: Aug 2003
Location: Glasgow
Distribution: Fedora / Solaris
Posts: 3,109

Rep: Reputation: 97
Are you using OSS, or ALSA?
 
Old 01-22-2006, 06:12 PM   #5
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Quote:
Originally Posted by ilikejam
Are you using OSS, or ALSA?
I really don't know how to determine which I am using. How can I tell? When I go to my volume control, I can see it says "ALSA MIXER"

Screenshot
 
Old 01-22-2006, 08:51 PM   #6
ilikejam
Senior Member
 
Registered: Aug 2003
Location: Glasgow
Distribution: Fedora / Solaris
Posts: 3,109

Rep: Reputation: 97
Looks like you're using ALSA.

Do you get any errors when you run 'ut2004' from a command line?
 
Old 01-23-2006, 07:22 AM   #7
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Quote:
Originally Posted by ilikejam
Looks like you're using ALSA.

Do you get any errors when you run 'ut2004' from a command line?
No, I get no errors from command line runnung the command "ut2004" and sound works great throughout the OS, just the game is dead silent.
 
Old 01-23-2006, 12:21 PM   #8
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
Someone had me run this command from www.linux-gamers.net.

Code:
carlos@striker:~$ lsof|grep snd
lsof: WARNING: can't stat() ext3 file system /dev/.static/dev
      Output information may be incomplete.
mixer_app 5323      carlos   42u      CHR      116,0               8371 /dev/snd/controlC0
carlos@striker:~$ lsof|grep dsp
lsof: WARNING: can't stat() ext3 file system /dev/.static/dev
      Output information may be incomplete.
Anyone know what this means and if this is why my sound is only muted in the game?
 
Old 01-23-2006, 02:26 PM   #9
ilikejam
Senior Member
 
Registered: Aug 2003
Location: Glasgow
Distribution: Fedora / Solaris
Posts: 3,109

Rep: Reputation: 97
lsof shows who/what is using a file at that moment in time. That command looks for processes which are using the sound devices. From the output of the command, you can see that nothing is using your sound (output) devices.

Try doing what's listed in this post:
http://www.linuxquestions.org/questi...67#post2007167

Also, I know it's stupid, but are you sure the volume controls are up in the game?
 
Old 01-23-2006, 02:38 PM   #10
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
I am pretty sure they are. The ingame music is mid level and so is the in-game sound. There is one point of interest I do have however it's while in the game and don't know if I can screenshot while in the game menu.
 
Old 01-23-2006, 07:04 PM   #11
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
OK - When I opened "terminal" and ran the command "ut2004", it loaded the game as normal and then I exited the game to see what errors may appear in the terminal window.

Code:
carlos@striker:~$ ut2004
open /dev/[sound/]dsp: No such file or directory
Xlib:  extension "XiG-SUNDRY-NONSTANDARD" missing on display ":0.0".
What does this mean?
 
Old 01-23-2006, 09:35 PM   #12
ilikejam
Senior Member
 
Registered: Aug 2003
Location: Glasgow
Distribution: Fedora / Solaris
Posts: 3,109

Rep: Reputation: 97
Ah.

It looks like you don't have OSS emulation enabled. That's fine.
Crack open a text editor, and put the following into ~/.openalrc
Code:
(define devices '(alsa))
(define speaker-num 2)
(define alsa-out-device "hw:0,0")
(define alsa-in-device "hw:0,0")
That should force openal (the audio subsystem UT uses) to use ALSA instead of OSS.

Dave
 
Old 01-24-2006, 11:55 AM   #13
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
If that works - I love you! Let me try this via SSH or when I get home from work.
 
Old 01-24-2006, 05:01 PM   #14
carlosinfl
Senior Member
 
Registered: May 2004
Location: Orlando, FL
Distribution: Arch
Posts: 2,905

Original Poster
Rep: Reputation: 77
ilikejam

I have been told by many people before I confure that text file, I can just update my UT2004 with the latest patch 3355 and that will fix my problem. Is there a guide to installing the latest patch?
 
Old 01-25-2006, 04:47 AM   #15
ilikejam
Senior Member
 
Registered: Aug 2003
Location: Glasgow
Distribution: Fedora / Solaris
Posts: 3,109

Rep: Reputation: 97
I've not seen any updates to the sound system for UT in their patches, but I could be wrong. That patch fixes some crashes in game, so you should probably install it anyway.

Dave
 
  


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
No Sound In UT2004 wnaLinux Linux - Games 13 12-12-2010 09:55 PM
FC3: No Sound in UT2004 ikester8 Linux - Games 2 03-16-2005 07:56 AM
No sound in UT2004 demo PeterWelzien Linux - Games 2 09-25-2004 08:51 AM
UT2004 Sound Probs tessx Linux - Games 4 05-02-2004 11:20 PM
Full UT2004 help with sound JROCK1980 Linux - Games 6 04-07-2004 11:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Games

All times are GMT -5. The time now is 07:24 PM.

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