Linux xorg配置双屏幕显示
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-28
上周在用单位的闲置硬盘装了个CentOS 5.4 x64,发现不能像win7一样默认识别双屏.
自己搞了搞总是失败,今天上午在网上google了一下,有高人说需要这么办.
Section "Screen"下面添加如下内容: Option "TwinView"-------------------------------------------估计是告诉X使用双屏显示. Option "MetaModes" "1280*1024 1280*1024"--------告诉X显示的分辨率. Option "TwinView Orientation" "RightOf"-------------估计这是告诉X附加的显示器在右侧. 全部配置内容如下: # nvidia-xconfig: X configuration file generated by nvidia-xconfig # nvidia-xconfig: version 1.0 (buildmeister@builder58) Fri Aug 14 18:33:37 PDT 2009 # Xorg configuration created by pyxf86config Section "ServerLayout" Identifier "Default Layout" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "InputDevice" # generated from default Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Unknown" ModelName "Unknown" HorizSync 28.0 - 33.0 VertRefresh 43.0 - 72.0 Option "DPMS" EndSection Section "Device" Identifier "Videocard0" Driver "nvidia" EndSection Section "Screen" Identifier "Screen0" Device "Videocard0" Monitor "Monitor0" DefaultDepth 24 ### Option "TwinView" Option "MetaModes" "1280*1024 1280*1024" Option "TwinView Orientation" "RightOf" ### SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection 非图形界面搞,然后启动X就行了. (*^__^*) |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Linux 双网卡绑定下一篇: linux shell编程之登录检验(不涉及数据库)
关于Linux xorg配置双屏幕显示的所有评论