LinuxQuestions.org
Help answer threads with 0 replies.
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 03-07-2004, 11:38 PM   #31
Thetargos
Senior Member
 
Registered: Mar 2003
Location: Mexico City
Distribution: Fedora, Ubuntu & Mint
Posts: 1,679

Rep: Reputation: 45

Word!
 
Old 03-08-2004, 12:33 AM   #32
ftgow
Member
 
Registered: Aug 2003
Distribution: Slackware
Posts: 69

Rep: Reputation: 15
TIP!

To get VASTLY improved sound quality in ut2003.
SIMPLY
Installt ut2004 demo, and copy over the openal.so from its system directory to ut2003's.
Or symboliclylly link if you dont have enough space.

And remember to have the apprioate sound card modules ainstalled as well as a sound card. You need a sound card to listen to sound but not video. A video card doesnt listen to sound. Nay a video card prohjects sound. and a joystick is not what it sounds like. freak. away.
 
Old 03-08-2004, 12:34 AM   #33
ftgow
Member
 
Registered: Aug 2003
Distribution: Slackware
Posts: 69

Rep: Reputation: 15
UPDATE!

For ut2003/4 my slackware setup (minus the new kernel is always done)
Once I feel its good (im doing quiite well and getting very good frames) I will test it against redhat 8.0 And then again against 8.0 but iwht a new kernel.
 
Old 03-08-2004, 12:34 AM   #34
ftgow
Member
 
Registered: Aug 2003
Distribution: Slackware
Posts: 69

Rep: Reputation: 15
and then against windows.
 
Old 03-08-2004, 08:35 AM   #35
purplecow
Member
 
Registered: Aug 2003
Location: Finland
Distribution: Mandriva
Posts: 102

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by RolledOat
To enable fast writes and SBA, simply add the support variables that your card supports. JUST after
'alias char-major-195 nvidia' in /etc/modules.conf add one (or both if supported) add this line.
options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1
This worked in Mandrake 9.2, and I got like 100 fpr more in glxgears...
But in Mandrake 10, there's nothing about nvidia in /etc/modules.conf.
I tried adding that there, but it didn't work. Crash.

Well, MDK 10 seems faster, I get 100-200 more fps in glxgears, but that's not very much as it is. But Seems like my main goal, faster ut2k4, is reached.

I'll get to recompiling the kernel sometime after I've ironed out all the other (numerous) glitches this distro has. Not enough energy for that now.
 
Old 03-08-2004, 01:40 PM   #36
ftgow
Member
 
Registered: Aug 2003
Distribution: Slackware
Posts: 69

Rep: Reputation: 15
Mandrake, using 2.6 has a differnt setup for module loading. The 2.4 kernels use the modules.conf, 2.6 modprobe.conf.
 
Old 03-08-2004, 02:56 PM   #37
Thetargos
Senior Member
 
Registered: Mar 2003
Location: Mexico City
Distribution: Fedora, Ubuntu & Mint
Posts: 1,679

Rep: Reputation: 45
Exactly, besides in my Fedora set up I did notice a substantial increment in FPS when I migrated from 2.4 kernels to the 2.6 (when I selected the new scheduler of course )
 
Old 03-08-2004, 07:23 PM   #38
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
i think were straying slightly from the point here. btw, i wouldnt mind tweaking my xf86 config a bit. hell, im the one who cleaned it up and added all sorts of fancy stuff like cursor shadows, agpgart...
 
Old 03-08-2004, 07:55 PM   #39
Thetargos
Senior Member
 
Registered: Mar 2003
Location: Mexico City
Distribution: Fedora, Ubuntu & Mint
Posts: 1,679

Rep: Reputation: 45
Also a minor tweak, if you use an ATi card, and you've got the console set to use the Vesafb driver, this patch is for you! This patch solves the problem of overlapping MTRR's as reported by dmesg. The problem is that the VESA driver sets one MTRR of size 16Mb while the drivers will attempt to get the size of that MTRR to the videocard's RAM (in my case 128Mb). You must apply this patch to the file /drivers/video/vesafb.c in your kernel's source tree. This patch works with kernels 2.6.x, since there's another solution for 2.4 kernels.

Patch:
Code:
diff -urN linux-2.6.3/drivers/video/vesafb.c patch/drivers/video/vesafb.c
--- linux-2.6.3/drivers/video/vesafb.c  2004-02-18 04:57:15.000000000 +0100
+++ patch/drivers/video/vesafb.c        2004-03-06 11:24:02.168585856 +0100
@@ -236,8 +236,8 @@
        /* limit framebuffer size to 16 MB.  Otherwise we'll eat tons of
         * kernel address space for nothing if the gfx card has alot of
         * memory (>= 128 MB isn't uncommon these days ...) */
-       if (vesafb_fix.smem_len > 16 * 1024 * 1024)
-               vesafb_fix.smem_len = 16 * 1024 * 1024;
+       //if (vesafb_fix.smem_len > 16 * 1024 * 1024)
+       //      vesafb_fix.smem_len = 16 * 1024 * 1024;

 #ifndef __i386__
        screen_info.vesapm_seg = 0;
 
Old 03-08-2004, 09:15 PM   #40
ftgow
Member
 
Registered: Aug 2003
Distribution: Slackware
Posts: 69

Rep: Reputation: 15
As far as my slackware box here is concerned, I think ive got it tweaked as much as possible, ill be working with the 2.6 source so I can check out glxgears benchmarks nad post them here.
 
Old 03-09-2004, 01:23 AM   #41
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
ya, people have been saying bad things about the integrety about 3d acceleration in the 2.6.x kernels, no matter what drivers theyre using, even if its proprietary. meanwhile, anyone know any monitor or ram tweaks?
 
Old 03-09-2004, 01:37 AM   #42
Thetargos
Senior Member
 
Registered: Mar 2003
Location: Mexico City
Distribution: Fedora, Ubuntu & Mint
Posts: 1,679

Rep: Reputation: 45
The XF86Config(-4) file offers much control over tweaking your monitor, about RAM... Can't help there, I don't know any (besides the kernel ones)
 
Old 03-20-2004, 04:24 PM   #43
CKHarri
LQ Newbie
 
Registered: Mar 2004
Distribution: Gentoo
Posts: 9

Rep: Reputation: 0
Help needed, i've been tryin to setup gentoo so i can play ut (btw this thread helped loads, since i found it yesterday) its almost perfect now, but when im online it feels like im playin on 56k modem i.e there is a delay when i fire.

any1 have any suggestions ?
 
Old 03-20-2004, 10:34 PM   #44
Thetargos
Senior Member
 
Registered: Mar 2003
Location: Mexico City
Distribution: Fedora, Ubuntu & Mint
Posts: 1,679

Rep: Reputation: 45
Check your ping times (the most important one), over what connection are you playing? (LAN, Broadband internet, how many kbps, etc).
 
Old 03-21-2004, 04:33 AM   #45
CKHarri
LQ Newbie
 
Registered: Mar 2004
Distribution: Gentoo
Posts: 9

Rep: Reputation: 0
NTL Cable connection 6ook. ingame pings seem fine, same as i get with XP maybe slightly lower. F1 ping =20-40 F6 ping = 60-80 depending on server.
 
  


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
Tweaking the linux desktop titanium_geek Linux - News 3 11-02-2005 01:49 PM
help with tweaking Suse Linux 9.3 pro Lightdreamer Linux - Newbie 4 09-30-2005 04:10 PM
Anyway to make linux games go faster by tweaking opengl somehow? FocusedWolf Linux - Games 3 04-16-2005 06:20 AM
Tweaking Linux to run on a slow, old PC pmjmcim Linux - Newbie 2 09-01-2004 09:14 AM
Tweaking linux? Kage Linux - Software 5 10-07-2002 11:33 AM

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

All times are GMT -5. The time now is 07:52 AM.

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