I want to change the display's frequency from 60hz to 50hz, on a fedora core 9 box, anyone know how to do this?

Thank you

link|improve this question
3  
off topic for stackoverflow - superuser.com maybe? – KevinDTimm Nov 2 '10 at 15:57
What desktop environment? – Let_Me_Be Nov 2 '10 at 15:58
feedback

migrated from stackoverflow.com Nov 2 '10 at 16:35

This question came from our site for professional and enthusiast programmers.

2 Answers

Expand the Monitor section of /etc/X11/xorg.conf to look something like this:

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync    30-107
        VertRefresh  48-120
EndSection
link|improve this answer
feedback

Add a new modeline to the Monitor section of /etc/X11/xorg.conf with the desired frequency. Use cvt to generate the appropriate modeline.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown