Tiny Core Linux

Tiny Core Extensions => TCE Q&A Forum => Topic started by: Chixiran on October 28, 2009, 12:20:47 PM

Title: help:how to change the refresh rate? thks
Post by: Chixiran on October 28, 2009, 12:20:47 PM
NULL
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on October 30, 2009, 11:25:16 AM
No one know?

I want to change the refresh rate from default value(maybe 60Hz) to 75Hz.

Because my display device is CRT, not LCD.
Title: Re: help:how to change the refresh rate? thks
Post by: jls on October 30, 2009, 11:48:45 AM
I think u need to install xorg
Title: Re: help:how to change the refresh rate? thks
Post by: neonix on October 30, 2009, 03:34:08 PM
You can't change refresh rate in Xvesa, because it was designed only for 60 Hz.
You have to install Xorg and set in xorg.conf correct refresh rate range.

for example
Section "Monitor"
Identifier "NEC MultiSync FE2111SB"
VendorName "NEC"
ModelName "FE2111SB"
HorizSync 30 - 80
VertRefresh 50 - 70
Option "dpms"
EndSection

but I don't know what to do next, because I was always using KDE to change refresh rate. Maybe xrandr will help.  :-\
Title: Re: help:how to change the refresh rate? thks
Post by: bmarkus on October 30, 2009, 03:50:29 PM
Using Xfce4 you can change it in the Settings menu.
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 01, 2009, 09:22:46 AM
to bmarkus:

can you tell the detail, how to?
Title: Re: help:how to change the refresh rate? thks
Post by: bmarkus on November 01, 2009, 09:54:41 AM
to bmarkus:

can you tell the detail, how to?


Click Settings on the desktop or select in the Applications menu, than choose Display.
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 01, 2009, 10:08:50 AM
i use "xrandr" command to change refresh rate, but failed. it show "Rate 75 Hz not available for this size".
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 02, 2009, 07:15:03 AM
before i install xorg, the display resolution is 1024*762. after i install xorg it change to 800*600 automatically. and never support 1024*768.

can you tell me how to resolve this problem? thks.
Title: Re: help:how to change the refresh rate? thks
Post by: Juanito on November 02, 2009, 07:19:49 AM
before i install xorg, the display resolution is 1024*762. after i install xorg it change to 800*600 automatically. and never support 1024*768.

can you tell me how to resolve this problem? thks.

..still not exactly the same topic, but anyway  :)

You could try something similar to this:
Code: [Select]
Section "Screen"
Identifier "Screen0"
Device     "Card0"
Monitor    "Monitor0"
SubSection "Display"
Viewport   0 0
Depth     24
Modes     "1280x800" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
..adapted for your particular situation/xorg.conf of course.
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 02, 2009, 07:56:45 AM
i create xorg.conf file in /etc/X11. and input the info you give to me. but it do not work ,when reboot, xorg.conf is delete automatically.
Title: Re: help:how to change the refresh rate? thks
Post by: jls on November 02, 2009, 08:02:36 AM
plz read th tinycore concepts. Open control panel and press help
Title: Re: help:how to change the refresh rate? thks
Post by: Juanito on November 02, 2009, 09:20:33 AM
i create xorg.conf file in /etc/X11. and input the info you give to me.

OK, so this means you're running Xorg "confless", have a look at the Xorg info file and follow the instructions to generate an xorg.conf and see if that works
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 02, 2009, 11:36:53 AM
do not work
Title: Re: help:how to change the refresh rate? thks
Post by: Juanito on November 02, 2009, 12:45:22 PM
do not work

What does not work? We're going to need a few more details in order to be able to help...
Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 03, 2009, 06:40:14 AM
it can only support 800x600 and 640x480.

this is my xorg.conf file,someone help me edit it to support 1024*768 resolution and 75HZ refresh rate.

Title: Re: help:how to change the refresh rate? thks
Post by: Jason W on November 03, 2009, 07:29:44 AM
The question has already been answered in this thread, but here is the exact numbers that should work for what you are wanting.

Code: [Select]
Section "Monitor"
Identifier   "Monitor0"
HorizSync     30-80
       VertRefresh    50-75
Option     "DPMS"
EndSection

Code: [Select]
Section "Screen"
Identifier "Screen0"
Device     "Card0"
Monitor    "Monitor0"
DefaultDepth 24

SubSection "Display"
Viewport   0 0
Depth     16
EndSubSection
SubSection "Display"
Viewport   0 0
Depth     24
Modes "1024x768"
EndSubSection
EndSection

Title: Re: help:how to change the refresh rate? thks
Post by: Chixiran on November 03, 2009, 08:05:41 AM
it do work now,thank you very much.

can you help me resolve another problem?http://forum.tinycorelinux.net/index.php?topic=3665.0