FC6 installed on my Intel DG965SS motherboard but there is only one problem. I can't get the screen resolution to change from its initial 1280 x 1024 to any other resolution. In particular, I want 1024 x 768.
When I select 1024 x 768, system-config-display changes /etc/X11/xorg.conf from
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
to
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1152x768" "1024x768" "1024x768" "800x600" "800x600" "640x480" "640x480"
EndSubSection
EndSection
The above
Modes line is strange. Is there a flaw in system-config-display?
Thank you.