Tag Archives: dual

MergedFB for i915G on ubuntu feisty

一直不知道i915的显卡还能使用MergedFB,原来在试验双显示器的时候,只用过Xinerama,但Xinerama使用后会禁止DRI,导致不能使用硬件加速以及AIGLX和XGL等三维效果。 主要的配置都在/etc/X11/xorg.conf的文件里。 关键的部分,一个是在Device节里: Option “MergedFB” “true” 另外一个部分是在Screen节里: SubSection “Display” Depth 24 Virtual 1560 1024 EndSubSection SubSection “Display” Depth 24 Modes “1400×1050 1280×1024 1024×768″ EndSubSection 要添加一个Virtual的桌面大小定义。通常这个Virtual的桌面就是两个显示器的分辨率之和。 我的xorg.conf配置: Section “Files” FontPath “/usr/share/fonts/X11/misc” FontPath “/usr/share/fonts/X11/cyrillic” FontPath “/usr/share/fonts/X11/100dpi/:unscaled” FontPath “/usr/share/fonts/X11/75dpi/:unscaled” FontPath “/usr/share/fonts/X11/Type1″ FontPath “/usr/share/fonts/X11/100dpi” … Continue reading

Posted in Linux | Tagged , , , , , , , | 3 Comments

Dual Head Configuration Options

ubuntu 5.04, dell lattitude d410, i915 video card 现象: 默认安装后不支持双头显示,fn+f8会黑屏,且无法返回。 尝试: 然后试验了几个软件,i810switch和i855crt,效果都不好。i855的功能很好,可惜在i915上无法工作(即使我重新编译了,让其认识了i915卡,也还不行)。 解决办法: 后来,在intel的官方网站看到了其readme,知道了几个参数,在xorg.conf中添加后就可以了。 在DEVICE项中添加: Option “MonitorLayout” “CRT,LFP” Option “Clone” “true” 若有别的要求,可仔细看其readme。 后续研究内容: 下一步,可以看看如何作两个显示器分别不同的内容。(或分成不同的桌面) 在网络上,还有进一步的要求,等以后再处理了。 参考: ftp://aiedownload.intel.com/df-support/8211/ENG/readme.txt ************************************************************ * 7. Dual Head Configuration Options ************************************************************ These options can be added … Continue reading

Posted in Linux | Tagged , , | Leave a comment