Click to See Complete Forum and Search --> : monitor rafresh rate


vultureanu
08-31-2004, 09:09 AM
I've already installed linux Slackware 10. Please, tell me, how can I change refresh rate for my monitor from 61Hz to 85Hz...because XF86Config no longer exist and in Control Center Modules I can't select other refresh rate. My monitor supports 1024x768 with 85Hz.

Daedrus
08-31-2004, 09:17 AM
XF86Config is now xorg.conf in Slack10.

XiaoKJ
08-31-2004, 09:17 AM
arrgh -- just seconds faster than me! :mad:

vultureanu
08-31-2004, 09:44 AM
# ************************************************** ********************
# Monitor section
# ************************************************** ********************

# Any number of monitor sections may be present

Section "Monitor"

Identifier "My Monitor"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

HorizSync 31.5 - 50.0

# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

VertRefresh 40-90

EndSection


# ************************************************** ********************
# Graphics device section
# ************************************************** ********************

# Any number of graphics device sections may be present

Section "Device"
Identifier "VESA Framebuffer"
Driver "vesa"
#VideoRam 4096
# Insert Clocks lines here if appropriate
EndSection

# ************************************************** ********************
# Screen sections
# ************************************************** ********************

# Any number of screen sections may be present. Each describes
# the configuration of a single screen. A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
Identifier "Screen 1"
Device "VESA Framebuffer"
Monitor "My Monitor"

# If your card can handle it, a higher default color depth (like 24 or 32)
# is highly recommended.

# DefaultDepth 8
# DefaultDepth 16
DefaultDepth 24
# DefaultDepth 32

# "1024x768" is also a conservative usable default resolution. If you
# have a better monitor, feel free to try resolutions such as
# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
# card/monitor can produce)

Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 32
Modes "1024x768" "800x600" "640x480"
EndSubsection

EndSection


This is my xorg.conf file. So ..were should I change the refresh rate?

Daedrus
08-31-2004, 10:00 AM
What monitor are you using and what video card do you have?
By the looks of your xorg.conf file you don't have monitor specified (i don't think you have to) and you are using a generic vesa driver which could be restricting your refresh rate. The setting you are looking for is VertRefresh which is currently set to 40-90. You will also what to check your monitors setting for Horizontal Sync Rate to make sure that what is set in the conf file is correct for your monitor.

vultureanu
08-31-2004, 10:08 AM
My monitor is an Likom ..and supports 1024x768 with 85Hz. My VGA card is Ati onboard with 4M RAM. In Slackware 9.1, in X I choose 17'' Philips Monitor and ATI VGA card....but here ..I can't choose anything. My monitor is set in 1024x768 with 61Hz.
In xorg.conf....I don't no where I should specify that specifications.

Icarus
08-31-2004, 10:13 AM
What's your monitor make/model? Running a search on http://google.com/linux you should be able to find the refresh rates for that monitor to be entered into the xorg.conf

Change this section with the correct values

Section "Monitor"

Identifier "My Monitor"

HorizSync 31.5 - 50.0

VertRefresh 40-90

EndSection