ok thanks for researching.
from your X config file, this is the section we need to focus on:
Code:
Section "Monitor"
HorizSync 30-33
Identifier "Monitor[0]"
ModelName "Unknown"
Option "DPMS"
VendorName "Unknown"
VertRefresh 43-72
UseModes "Modes[0]"
EndSection
it looks like it already does have values for the VertRefresh and HorizSync.
however, these are the ones specified, from the official documentation for your monitor:
Code:
Scanning Frequency
Horizontal
30 to 85 kHz
Vertical
50 to 120 Hz
therefore you need to replace '30-33' with '30-85', and '43-72' with '50-120'.
as the top of the configuration file states:
Quote:
# Automatically generated by [SaX2] (4.8)
# PLEASE DO NOT EDIT THIS FILE!
|
i dont use this 'SaX2' or XFree86, so i dont know anything about this program and whether it can run from command line or GUI only. anyway, look into it and try and run this configuration tool and look for the vert/horiz options, or maybe there will be an option for 'Configure rates manually' or something like that, i wouldnt know. if that program doesnt have this option, try and run 'xf86config' or something similar (again, not sure the name) as i would think this would let you specify these rates. it may be good to make a backup of your current XFree config file before. after running the tool(s) then try and 'startx' again. if that fails, post the complete X log file.
also, something else to note is this part of your config file:
Code:
Section "Screen"
DefaultDepth 16
SubSection "Display"
Depth 15
Modes "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "640x480"
EndSubSection
SubSection "Display"
Depth 32
Modes "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "640x480"
EndSubSection
you may want to change "DefaultDepth 16" to "DefaultDepth 24" to get a better appearance. again, first look for these options during the configuration with the previously mentioned tools.
and one last thing, notice all of the lines with 'Modes "640x480"'. this means you wont be able to run at 800x600 or 1024x768.. if you want that, then change the line for the depth that you want, and add resolutions in order of priority. again, look for these in the tools before editing the file because it asked nicely not to. you could cut this whole "Screen" section down to this:
Code:
Section "Screen"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "640x480"
EndSubSection