发新话题
打印

mandrake9.0的x配置问题

mandrake9.0的x配置问题

我的显卡是 9880,显示器是国产的华胜15寸.
因为都是找不到显示器的品牌,所以配置显示器的时候选择了1024*768@70hz.但是为什么我用mandrake8.1的时候,也是采用同样的配置,而使用800*600刷新率可以上到85,而现在也使用800*600只能上到60hz?有什么办法可以提高刷新率?
谢谢!!!      

TOP

yeah!!搞定.
配置显示器的时候,不要选1027*768@70hz

选"定制",然后把垂直刷新率调高一点.我调到50-85hz

现在我用800*600,可以上到85hz拉!
哈哈.      

TOP

所有的 LINUX 发行版的 X WINDOW  的配置,都在
/etc/X11/XF86Config   (对于 XFree 3.xx)
/etc/X11/XF86Config-4 (对于 XFree 4.xx)

你只要修改这个文件就行。以下是办公室一台机器上的 /etc/X11/XF86Config-4 文件的内容:

# File generated by XFdrake.

# **********************************************************************
# Refer to the XF86Config man page for details about the format of
# this file.
# **********************************************************************

Section "Files"
    # Multiple FontPath entries are allowed (they are concatenated together)
    # By default, Mandrake 6.0 and later now use a font server independent of
    # the X server to render fonts.
    FontPath "unix/:-1"
EndSection

Section "ServerFlags"
    #DontZap # disable <Crtl><Alt><BS> (server abort)
    AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
    #DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx" # 3D layer
EndSection

Section "InputDevice"
    Identifier "Keyboard1"
    Driver "Keyboard"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbOptions" ""
EndSection

Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "rotocol" "IMPS/2"
    Option "Device" "/dev/psaux"
    Option "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier "monitor1"
    VendorName "lug'n Play"
    ModelName "1280x1024 @ 60 Hz"
    HorizSync 30-70
    VertRefresh 50-130
   
    # Sony Vaio C1(X,XS,VE,VN)?
    # 1024x480 @ 85.6 Hz, 48 kHz hsync
    ModeLine "1024x480"    65.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync
   
    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    ModeLine "768x576"     50.00  768  832  846 1000   576  590  595  630
   
    # 768x576 @ 100 Hz, 61.6 kHz hsync
    ModeLine "768x576"     63.07  768  800  960 1024   576  578  590  616
EndSection

Section "Device"
    Identifier "device1"
    VendorName "nVidia Corporation"
    BoardName "RIVA TNT2"
    Driver "nv"
    Option "DPMS"
EndSection

Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 16
   
    Subsection "Display"
        Depth 8
        Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
    EndSubsection
   
    Subsection "Display"
        Depth 15
        Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
    EndSubsection
   
    Subsection "Display"
        Depth 16
        Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
    EndSubsection
   
    Subsection "Display"
        Depth 24
        Modes "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
    EndSubsection
EndSection

Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    Screen "screen1"
EndSection

其中,如下的 "Monitor" 一节很重要:

Section "Monitor"
    Identifier "monitor1"
    VendorName "lug'n Play"
    ModelName "1280x1024 @ 60 Hz"
    HorizSync 30-70
    VertRefresh 50-130
   
    # Sony Vaio C1(X,XS,VE,VN)?
    # 1024x480 @ 85.6 Hz, 48 kHz hsync
    ModeLine "1024x480"    65.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync
   
    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    ModeLine "768x576"     50.00  768  832  846 1000   576  590  595  630
   
    # 768x576 @ 100 Hz, 61.6 kHz hsync
    ModeLine "768x576"     63.07  768  800  960 1024   576  578  590  616
EndSection

这两个刷新率数据,必须正确,要按照你的显示器的说明书来填写,否则,要么你的显示器性能不能发挥极至,要么毁坏你的显示器:

    HorizSync 30-70
    VertRefresh 50-130

安装时的配置,一般不会损坏你的显示器,但是,如果安装程序没有识别你的显示器,那么,他就按照最低要求来使用你的显示器。

另外,那些 ModeLine 行,你也可以增加。似乎对于  XFree 4.xx 来说,不增加也可以。      
渴望春天 come, sweet May!

TOP

发新话题