PDA

View Full Version : Help widescreen lcd with nvida 7300gt


spiderjerusalem
2006-10-29, 12:48 AM CDT
Sorry if I am posting this in the wrong section, I wasn't sure if it should be in the hardware or software section. I have a Gateway FPD1975W monitor with a native resolution of 1440x900, I cant get the resolution to change to that in KDE or Gnome, I am using the Nvida drivers from livna and Fedora core 6 64bit. No matter what i set the resolution to it defaults back to 1024x768 when i reboot. I am connected using DVI.

my xorg.config

# Xorg configuration created by system-config-display

Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
ModulePath "/usr/lib64/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib64/xorg/modules"
EndSection

Section "Module"
Load "glx"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "Monitor"

### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor0"
ModelName "LCD Panel 1440x900"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 100.0
VertRefresh 59.0 - 75.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "vesa"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1024x768" "1024x768" "800x600" "800x600" "640x480" "640x480"
EndSubSection
EndSection


I have tried removing all of the other modes in this file too and they just show back up when i reboot.

Dygear
2006-10-29, 01:13 AM CST
Modes "1440x900" "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1024x768" "1024x768" "800x600" "800x600" "640x480" "640x480"
Try ..
Modes "1440x900" "1440x900" "1280x1024" "1280x1024" "1024x768" "1024x768" "800x600" "800x600" "640x480" "640x480"

That worked for me, it would seem that in the mode area, the first one is the name, and the second one is the resolution.

spiderjerusalem
2006-10-29, 12:41 PM CST
thank you, it acctualy seemed the error was here

Section "Device"
Identifier "Videocard0"
Driver "vesa"
EndSection

It was not using the nvida drivers........

I just switched the driver over and its working... now i just need to get opengl working right.