How to increase refresh rate


 
Thread Tools Search this Thread
Operating Systems Linux How to increase refresh rate
# 1  
Old 06-08-2005
How to increase refresh rate

Hi,
I am using fc3, and I would like to know how to increase monitor refresh rate.

I have tried "Applications" > "Preferences" > "Screen Resolution" but I can't seem to increase greater than 85Hz.

I have tried to edit /etc/X11/xorg,conf
but not sure how to...


So here is my file.
How may I specify the refresh rate?
There is a range below for vertical refresh, 50-160, how do I know what is an acceptable range if I were to extend this?

Quote:
# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"

# RgbPath is the location of the RGB database. Note, this is the name of the
# file minus the extension (like ".txt" or ".db"). There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
# Option "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Option "XkbModel" "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
# Option "XkbModel" "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"
# Or if you just want both to be control, use:
# Option "XkbOptions" "ctrl:nocaps"
#
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "PTS0309"
DisplaySize 320 240
HorizSync 30.0 - 70.0
VertRefresh 50.0 - 160.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "vesa"
VendorName "Videocard vendor"
BoardName "VESA driver (generic)"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 16
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "DRI"
Group 0
Mode 0666
EndSection
# 2  
Old 06-08-2005
Quote:
Originally Posted by armen
So here is my file.
How may I specify the refresh rate?
There is a range below for vertical refresh, 50-160, how do I know what is an acceptable range if I were to extend this?

You should read the documentation for the xorg or XFree86 distribution,
whichever is used by Fedora, and consult the manual for your monitor for
the h and v sync ranges.
# 3  
Old 06-09-2005
I know the range is correct, it's just that i want to increase it above 85.

How do I do that?
# 4  
Old 06-10-2005
Yes, I checked the range, 50-160, and that is correct.
My monitor is very new.

I still don't know how I can change the refresh rate from 85 to something higher.
Obviously I can do higher, but HOW.

Please I want to use my monitor without my eyes hurting.
We have very strong experts on this forum, is this question really that hard to asnwer.

How can i specify a higher refresh rate?
# 5  
Old 06-10-2005
Please read the rules.

(2) No negative comments about others or impolite remarks. Be patient.


Anyway, try changing the xorg.conf file to a single setting, such as;


VertRefresh 100.0

To set the vertical refresh rate to 100Mhz for example.
# 6  
Old 06-11-2005
Quote:
Originally Posted by locustfurnace
Please read the rules.

(2) No negative comments about others or impolite remarks. Be patient.

Anyway, try changing the xorg.conf file to a single setting, such as;
VertRefresh 100.0

To set the vertical refresh rate to 100Mhz for example.
not quite sure what evidence u see that violates forum rules...
I have no doubt in my mind that there are experts or more knowledgable people here, and that's why I asked. One would only be offended if they indeed believed that there are no experts here and took this remark to be sarcastic, which was not the nature or the wording of my response.

lets not make something out of nothing.

being impatient is not a violation of forum rules, its if u act on those impulses in such a way that violates policy, and I HAVE NOT done that.

about setting VertRefresh value to 100.0, i had tried that earlier and X would not load.
That is one of the reasons why I decided to post this question Smilie

for those interested, it turned out it was the video card, so i simply replaced my win box monitor w/ my fc3 box and everything works just fine!
# 7  
Old 06-11-2005
I believe locustfurnace may also have been implicitly pointing this rule out, which you did break, and is where the issue of impatience arrises.


(4) Do not 'bump up' questions if they are not answered promptly. No duplicate or cross-posting and do not report a post where your goal is to get an answer more quickly.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. IP Networking

C - IP change during a hardware refresh?

Hi All, I was told to perform analysis for IP change during a hardware refresh? Does the IP change when a hardware refresh is performed? if Yes, why? (5 Replies)
Discussion started by: visitsany
5 Replies

2. Programming

Motif Application will not refresh

I have a Motif Application created with XtVaAppInitialize. I have two field widgets, created with XmCreateTextField. Now when I programmatically change the data in any of the two fields, the widgets don't get refreshed, only after a mouse over. I have tried anything, from including the "xrefresh"... (4 Replies)
Discussion started by: JenniferKuiper
4 Replies

3. Programming

ncurses refresh()

i have read in one of links, there its documented but i am using following code int main () { char ch; initscr(); printw("Enter a char :"); ch=getch(); printw("You Entered '%c' ",ch); getch(); endwin(); return 0; } the code does... (2 Replies)
Discussion started by: MrUser
2 Replies

4. Shell Programming and Scripting

refresh ps ax |grep using a script

hi all I want to refresh ps ax |grep something using a script every n seconds. Plz advise how to do that. (2 Replies)
Discussion started by: coolatt
2 Replies

5. UNIX for Dummies Questions & Answers

Refresh ls list on screen (auto-refresh)?

I am looking for a way to issue a command or string of commands to repeatedly display new files that are written to the directory. I usually use ls -ltr to see the newest files at the bottom of the screen. I would like to automate this command to refresh what is displayed every second or so. Can... (3 Replies)
Discussion started by: skidude
3 Replies

6. AIX

AIX 5.3 monitor refresh rate

Hi All, Great forums, a wealth of knowledge. We have just replaced our server room screen with a nice 15" LCD. We run CDE as the gui at the console. I think the refresh rate is too high for the LCD as I get an out of range error message on the screen. Can anyone point me in the right... (1 Reply)
Discussion started by: dj.brown
1 Replies

7. AIX

Refresh window?

Hi, for my first time using AIX, I haven't had much luck and I was wondering if I could get some urgent help. I had a terminal open and had allocated some space to a new volume group and then logical partition to "/foldername". I then went to go to netscape, so I typed that in the terminal and it... (0 Replies)
Discussion started by: JimmyFo
0 Replies

8. UNIX Desktop Questions & Answers

X-server and UNIX: monitor refresh rate

Hello. I'm running OpenBSD3.5 with GNOME2.4. The problem is that the monitors flickers. I'd like to know how to increase the vertical refresh rate. thanks in advance. (0 Replies)
Discussion started by: sablot
0 Replies
Login or Register to Ask a Question