如此科技,何日可待
太Cool,太感人了!
World Builder from Bruce Branit on Vimeo.
由于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
Compaiq V3000的Laptop集成了Mobile Intel 945GM Family 显卡,装完Ubuntu8.10死活不能起特效桌面,经一周的不屑努力终于成功,方法也很简单。修改/etc/X11/xorg.conf,加入蓝色字体显示的几行:
Section “Device”
Identifier ”Configured Video Device”
Driver ”intel”
Option ”AccelMethod” “EXA”
Option ”MigrationHeuristic” “greedy”
Option ”ExaNoComposite” “false”
EndSection
不过这样修改后3D桌面是有了,可是双头显示的时候会出现问题。