LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1269|回复: 9

液晶显示器如何配置xorg.conf?

[复制链接]
发表于 2008-10-20 13:20:09 | 显示全部楼层 |阅读模式
rt.水平与垂直扫频怎么设置?
发表于 2008-10-20 14:08:29 | 显示全部楼层
根据你自己显示器而设置,当然只是显像管显示器才需要
回复 支持 反对

使用道具 举报

发表于 2008-10-20 14:53:26 | 显示全部楼层
不用怎么设置……给个大致的范围就可以了……
回复 支持 反对

使用道具 举报

发表于 2008-10-20 15:50:15 | 显示全部楼层
在硬件网站上查你所用型号的垂直和水平频率写到xorg.conf相应字段里,然后在色深那个字段每行写你的最佳分辨率如“1280x1024”,重启xorg就成了
回复 支持 反对

使用道具 举报

发表于 2008-10-20 17:53:26 | 显示全部楼层
接着问,如何配置双屏,intel X3100,貌似不能像Nv那样直接在图形界面操作?
回复 支持 反对

使用道具 举报

发表于 2008-10-20 18:06:31 | 显示全部楼层
我比较菜的,就会用的这个:
  1. alias 2head='xrandr --output LVDS --right-of VGA'
复制代码
回复 支持 反对

使用道具 举报

发表于 2008-10-21 09:21:30 | 显示全部楼层
Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync        30.0 - 130.0
        VertRefresh        60.0
EndSection

这是我的设置,HorixSync 是参照网上的帖子,液晶的一般刷新率都60,所以我也直接改成60,不写范围了。
回复 支持 反对

使用道具 举报

发表于 2008-10-21 10:21:34 | 显示全部楼层
Post by cyf3732;1896619
我比较菜的,就会用的这个:

  1. alias 2head='xrandr --output LVDS --right-of VGA'
复制代码


谢谢。今天有空试一下。
回复 支持 反对

使用道具 举报

发表于 2008-10-21 11:31:08 | 显示全部楼层
显示器根本不需要作配置的,现在都是从显示器的 edid 信息读的,除非你的显示器不支持这个。

xrandr 1.2 设置双屏很简单,就像楼上说的那样。可以用 xrandr 命令看目前连接的显示器和名字。我的xorg.conf 如下。
Section "ServerLayout"
        Identifier     "Default Layout"
        Screen         "Default Screen"
        InputDevice    "Generic Keyboard"
        InputDevice    "Configured Mouse"
        InputDevice    "Synaptics Touchpad"
EndSection

Section "ServerFlags"
        #Option            "AIGLX" "off"
        Option            "AIGLX" "true"
EndSection

Section "Module"
        load "dbe"
        load "glx"
        load "drm"
        load "dri"
EndSection

Section "InputDevice"
        Identifier  "Generic Keyboard"
        Driver      "kbd"
        Option            "CoreKeyboard"
        Option            "XkbRules" "xorg"
        Option            "XkbModel" "pc104"
        Option            "XkbLayout" "us"
        Option "XkbOptions" "ctrl:nocaps"
EndSection

Section "InputDevice"
        Identifier  "Configured Mouse"
        Driver      "mouse"
        Option            "CorePointer"
        Option            "Device" "/dev/input/mice"
        Option            "rotocol" "ImPS/2"
        Option            "Emulate3Buttons" "true"
EndSection

Section "InputDevice"
        Identifier  "Synaptics Touchpad"
        Driver      "synaptics"
        Option            "SendCoreEvents" "true"
        Option            "Device" "/dev/psaux"
#        Option            "rotocol" "auto-dev"
        Option            "HorizScrollDelta" "0"
EndSection

Section "Monitor"
            Identifier      "Integrated LCD"
         Option      "DPMS"
EndSection

Section "Monitor"
        Identifier      "External VGA"
        Option "RightOf" "Integrated LCD"
         Option      "DPMS"
EndSection

Section "Device"
        Identifier  "Generic Video Card"
        Driver                "radeon"
#        # accelration
        Option          "AGPMode" "4"
        Option          "EnablePageFlip" "on"
        Option          "RenderAccel" "on"
        Option          "AccelMethod"   "EXA" # or XXA
        Option          "DynamicClocks" "on"
        Option                "DRI" "true"
        # Color Tiling
        Option          "ColorTiling"   "on"
    Option          "Monitor-VGA-0" "External VGA"
    Option          "Monitor-LVDS"  "Integrated LCD"
    Option "XAANoOffscreenPixmaps" "true" # for composite
EndSection

Section "Screen"
        Identifier "Default Screen"
        Device     "Generic Video Card"
        Monitor    "Integrated LCD"
        DefaultDepth     24
        SubSection "Display"
                Modes    "1280x1024" "1024x768"
                Virtual 2304 1024
        EndSubSection
EndSection

Section "Extensions"
        #Option            "Composite" "Disable"
        Option            "Composite" "enable"
EndSection

Section "DRI"
        Group 0
        Mode 0666
EndSection
回复 支持 反对

使用道具 举报

发表于 2008-10-21 13:58:04 | 显示全部楼层
thanks 搞定了。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表