You are not logged in.
Pages: 1
Whell i am going nuts here. What i'm trying to do past two days is to make my monitor to play nice with my Geforce 9600GT graphics card (nvidia driver) on D-SUB over adapter but i cann't get it to run on native resolution (1680x1050). It just wonn't go over 1280x960. So i tried to go as usual to wiki and i ended with new xorg.conf;
[tomek@callisto ~]$ cat /etc/X11/xorg.conf
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 285.05.09 (buildmeister@swio-display-x86-rhel47-02.nvidia.com) Fri Sep 23 17:55:57 PDT 2011
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Samsung"
ModelName "SyncMaster 2232BW"
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 75.0
# DisplaySize 517 372
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "nologo" "1"
Option "ConnectedMonitor" "CRT"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1680x1050"
EndSubSection
SubSection "Display"
Depth 4
Modes "1680x1050"
EndSubSection
SubSection "Display"
Depth 8
Modes "1680x1050"
EndSubSection
SubSection "Display"
Depth 15
Modes "1680x1050"
EndSubSection
SubSection "Display"
Depth 16
Modes "1680x1050"
EndSubSection
SubSection "Display"
Depth 24
Modes "1680x1050"
EndSubSection
EndSection
Still nothing...i'm out of ideas, please help
Last edited by tomek@vz (2012-03-17 20:23:11)
For some tasks, the CLI is quicker. That's not elitism nor arrogance, that's just a fact of life.
Offline
Just for the record - i made it to work I deleted xorg.conf and made /etc/X11/xorg.conf.d/10-monitor.conf...and it looks like this:
Section "Monitor"
Identifier "Monitor0"
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 75.0
Option "DPI" "96 x 96"
Modeline "1680x1050_60.00" 147.14 1680 1784 1968 2256 1050 1051 1054 1087 -HSync +Vsync
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia" #Choose the driver used for this monitor
# Option "ConnectedMonitor" "CRT" #backup if original conf don't work
# Option "CustomEDID" "CRT-0:/home/tomek/edid.bin" #backup if original conf don't work
EndSection
Section "Screen"
Identifier "Screen0" #Collapse Monitor and Device section to Screen section
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24 #Choose the depth (16||24)
SubSection "Display"
Depth 24
Modes "1680x1050_60.00" #Choose the resolution
EndSubSection
EndSection
Maybe it will help someone
Last edited by tomek@vz (2011-10-16 05:35:49)
For some tasks, the CLI is quicker. That's not elitism nor arrogance, that's just a fact of life.
Offline
Pages: 1