You'll need to manually edit your /etc/X11/xorg.conf file.
First, make a backup of the original:
Code:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
(note the Capital X)
From a terminal, you can edit the original with root priveleges:
Code:
gksudo gedit /etc/X11/xorg.conf
There might be next to nothing inside, but don't worry.
The specs for your monitor were found, and I suggest adding these lines to your xorg.conf:
Code:
Section "Monitor"
Identifier "Configured Monitor"
HorizSync 31-65
VertRefresh 50-120
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024"
EndSubSection
EndSection
Be mindful of what lines need start and end-quotes, and those line that don't need quotes.
Save the file, quit the editor, and then use the logout function to restart X. Or you could just restart the computer. There are other ways to do this, but as a start, this is easiest.
Let us know how it goes!
Bookmarks