Raid’s World

2008年12月29日

Intel集成显卡 Ubuntu 8.10 双头显示

归档在: 技术 — 标签: — raid @ 10:01 上午

由于Linux下Intel集成显卡驱动的限制,所以虚拟桌面 (Virtual Desktop) 大小只能是2048×2048。现在大家的显示器尺寸又很大,基本上笔记本(1280×800)和22″液晶显示器(1680×1050)如果左右扩展的话1280+1680>2048。所以就会造成用了3D桌面特效(Compiz)就不能左右扩展桌面的问题。解决方法是,上下扩展看下图:

monitor windows must fit within the virtual screen

附上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

2008年12月15日

Intel集成显卡 Ubuntu 8.10 下用特效

归档在: 技术 — 标签: — raid @ 9:50 上午

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桌面是有了,可是双头显示的时候会出现问题。

WordPress中文版 提供驱动