Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 01-05-2009, 09:24 AM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

Angelox do you mind posting your xorg.conf file. Should be somewhere like /etc/X11/xorg.conf
Reply With Quote
  #2  
Old 01-05-2009, 09:51 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

NVidia used to have their own generic Linux driver updates, which worked very well for me (Mandriva didn't always get my video driver right).
They probably still have it.

Code:
# File generated by XFdrake (rev 247269)

# **********************************************************************
# Refer to the xorg.conf man page for details about the format of
# this file.
# **********************************************************************

Section "ServerFlags"
    #DontZap # disable <Ctrl><Alt><BS> (server abort)
    AllowMouseOpenFail # allows the server to start up even if the mouse does not work
    #DontZoom # disable <Ctrl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
    Disable "dri"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx" # 3D layer
EndSection

Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbOptions" "compose:rwin"
EndSection

Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/mouse"
EndSection

Section "InputDevice"
    Identifier "Mouse2"
    Driver "evdev"
    Option "device" "/dev/input/by-id/usb--event-mouse"
    Option "HWheelRelativeAxisButtons" "7 6"
EndSection

Section "Monitor"
    Identifier "monitor1"
    VendorName "Generic"
    ModelName "1024x768 @ 70 Hz"
    HorizSync 31.5-57.0
    VertRefresh 50-70
    
    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    ModeLine "768x576"     50.00  768  832  846 1000   576  590  595  630
    
    # 768x576 @ 100 Hz, 61.6 kHz hsync
    ModeLine "768x576"     63.07  768  800  960 1024   576  578  590  616
EndSection

Section "Device"
    Identifier "device1"
    VendorName "nVidia Corporation"
    BoardName "NVIDIA GeForce 6100 and later"
    Driver "nvidia"
    Option "DPMS"
    Option "DynamicTwinView" "false"
    Option "AddARGBGLXVisuals"
EndSection

Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
EndSection

Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Mouse2" "SendCoreEvents"
    Screen "screen1"
EndSection
Reply With Quote
  #3  
Old 01-05-2009, 10:17 AM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

Not much different than mine:

Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	RgbPath      "/usr/share/X11/rgb"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "/usr/share/fonts/misc/"
	FontPath     "/usr/share/fonts/TTF/"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1/"
	FontPath     "/usr/share/fonts/100dpi/"
	FontPath     "/usr/share/fonts/75dpi/"
EndSection

Section "Module"
	Load  "dbe"
	Load  "record"
	Load  "GLcore"
	Load  "xtrap"
	Load  "extmod"
	Load  "glx"
#	Load  "dri"
	Load  "type1"
	Load  "freetype"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "nvidia"
	VendorName  "nVidia Corporation"
	BoardName   "Unknown Board"
	BusID       "PCI:1:0:0"
       	Option	"RenderAccel"	"True"
	Option	"AddARGBGLXVisuals"	"True"
	Option	"UseEvents"	"False"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Extensions"
    Option "Composite" "Enable"
EndSection
Wont be able to fart around with this till tonight but maybe I need to try specifying my screen resolution in xorg.conf instead of letting X auto detect it. I see yours is set up that way.

So you do have spell effects then, hmm...

I also see that you have DPMS enabled do you know what that is for?

I use the nvidia-drivers package and it pretty much auto configs xorg.conf for you. I just had to do some tweaking after that.
Reply With Quote
  #4  
Old 01-05-2009, 11:46 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Might be still a problem with the install package from NVidia, you might want to Google for those missing pixel shader versions, see what pops up.
Also try one more thing, can you replace your /Titanium/RenderEffects directory with a fresh one?
Reply With Quote
  #5  
Old 01-05-2009, 12:26 PM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

A fresh one meaning from another install of titanium?
Reply With Quote
  #6  
Old 01-05-2009, 12:37 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Yea, one that you know works - don't delete your old one though, just rename it or something (just incase)
Reply With Quote
  #7  
Old 01-05-2009, 12:40 PM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

Hmm pixel shaders are working fine in WoW under wine. And all my native games fly, doom3 (Ultra Settings) Quake 4 (Ultra). NWN. In wow I average about 100-250 FPS depending on where I am and that is with all settings maxed out.

Could be something with the drivers I am using, I belive they are marked as unstable in gentoo which probably means they are the nvidia beta drivers.

At this point I am just happy to be able to play on my eqemu server again.
Reply With Quote
  #8  
Old 01-05-2009, 07:26 PM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

I just duplicated my issues to the T on a different laptop with an ATI Radeon X1600. This is an Gentoo x86 based system with a dual core centrino.

Using a clean, hacked wine 1.1.12 with the hacked .dll file and eqclient posted at wineHQ.

Same issues:

-fullscreen mouse issue
-no spell effects

havent messed with the shaders but I bet I will have more issues on this than on the nvidia platform. The game is playable in a window though. Also note that I had to downgrade my ati drivers to get them to work right with wine. Before the downgrade it would hang up X. Need to use any ATI proprietary drivers before 8.500 to make it work. Currently I am using 8.493.
Reply With Quote
Reply

Thread Tools
Display Modes

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 On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 07:46 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3