How to override refresh rate with Nvidia driver - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Xorg Problems (https://www.linux-noob.com/forums/forum-56.html) +---- Forum: nVidia Problems (https://www.linux-noob.com/forums/forum-16.html) +---- Thread: How to override refresh rate with Nvidia driver (/thread-1067.html) |
How to override refresh rate with Nvidia driver - hybrid - 2007-12-16 If you're using the proprietary Nvidia driver with Linux, and you have a CRT monitor that the driver won't recognise, or for some other reason the refresh rate is set incorrectly, here are the steps for overriding the refresh rate. You need to edit the /etc/X11/xorg.conf file. Before making any changes though, back it up so you can restore it if you break anything. Code: # cp /etc/X11/xorg.conf /etc/X11/xorg.backup-working.conf Now open up the file as root to edit it. Under Section "Screen", there will be a SubSection "Display" area. On the Modes line, put your desired resolution(s) followed by an underscore and then the desired refresh rate. For example, I want to run at 1600x1200 at 75 Hz, so I put: Code: Modes "1600x1200_75" Normally, though, this won't override the refresh rate if your monitor is telling the driver the wrong information. To force the driver to ignore the monitor, paste this inside Section "Screen": Code: Option "UseEDIDFreqs" "False" Finally, search for VertRefresh and make sure you are not trying to set a refresh rate higher than the largest number in that field. Save the file, restart X with Ctrl-Alt-Backspace and you should be in your desired resolution/refresh rate combination. Always make sure your monitor is actually capable of the resolution and refresh rate combination you select before you override it manually or you may permanently damage it. Only use this if the driver is detecting the wrong values and won't let you set anything above really small resolutions, for example, not to try and push your monitor over its limits. If you need to roll back to the old configuration file in case something goes wrong, do: Code: # cp /etc/X11/xorg.backup-working.conf /etc/X11/xorg.conf That's it. For reference, here's what my xorg.conf looks like for a NVIDIA Geforce 6600 GT on a CTX VL950/EX951F 19" monitor for Ubuntu 7.10: Code: # xorg.conf (xorg X Window System server configuration file) |