It sounds like a problem with the EDID data the monitor sends to the PC. Try another cable. Cheap cables sometimes doesn't work. If it doesn't corrects the problem, try making a Xorg.conf with this command:
Code:
sudo X -configure
sudo cp xorg.conf.new /etc/X11/xorg.conf
sudo nano /etc/X11/xorg.conf
Edit the file and change Monitor and Screen sections to include this:
Code:
Section "Monitor"
Identifier "Generic Monitor"
HorizSync 30-71
VertRefresh 50-160
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Configured Video Device"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768"
EndSubSection
EndSection
You can also include any other resolutions your monitor supports.
Bookmarks