i have been searching for the past few days on how to do this i have found many articles all telling me slightly different ways of doing so but none have worked.
the monitor i am using displays at 1680x1050@60Hz
however most access will be from a laptop running at 1366x768 through VNC
i have the VNC working thats not a problem my current problem is that when i turn it on the screen defaults to 1600x1200@60Hz
when i go to System>Preferences>Screen Resolution the options i get are
1600x1200, 1280x1200,1024x768, 800x600, 640x480
however when i change to something other than 1600x1200 the refresh rate changes to 85Hz and cannot be displayed by my monitor so i have to wait for it to default back, not that i want to change it to any of those in the long term
/etc/X11/xorg.conf looks like this (i have only edited the Modes line)
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
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:
Identifier "Monitor0"
ModelName "Philips 200W (autoconfigured)"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 93.0
VertRefresh 56.0 - 85.0
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1366x768"
EndSubSection
EndSection
Thanks Scott.