Intel集成显卡 Ubuntu 8.10 双头显示
由于Linux下Intel集成显卡驱动的限制,所以虚拟桌面 (Virtual Desktop) 大小只能是2048×2048。现在大家的显示器尺寸又很大,基本上笔记本(1280×800)和22″液晶显示器(1680×1050)如果左右扩展的话1280+1680>2048。所以就会造成用了3D桌面特效(Compiz)就不能左右扩展桌面的问题。解决方法是,上下扩展看下图:
附上xorg.conf文件内容:
Section “Monitor”
Identifier “Configured Monitor”
EndSection
Section “Screen”
Identifier “Default Screen”
Monitor “Configured Monitor”
Device “Configured Video Device”
SubSection “Display”
Virtual 2048 2048
EndSubSection
EndSection
Section “Device”
Identifier “Configured Video Device”
Driver “intel”
Option “AccelMethod” “EXA”
Option “MigrationHeuristic” “greedy”
Option “ExaNoComposite” “false”
EndSection
