2007年9月27日 星期四

[教學]在 Linux 上,替 ThinkPad 系列的 laptop 加上投影顯示

許多使用 ThinkPad 的朋友,如果是裝了 Linux 的話
常常會發現,當接上單槍投影機時
卻吃不到 RGB 線的訊號源
又不像 windows 那樣有 hotkey 可以切換
其實問題要解決很簡單...就只要加上一行字就可以了
這邊以 Ubuntu 為例,其他的 Linux 套件發行版本作法亦雷同
請跟著我這樣做
sudo gedit /etc/X11/xorg.conf
然後找出下面敘述的這一段

Section "Device"
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

把他改成
Section “Device”
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver “i810″
Option “MonitorLayout” “CRT,LFP”
Option “Clone” “true”
BusID “PCI:0:2:0″
EndSection

然後重新啟動 X-Window 後
就可以一接上單槍投影機,就直接吃到 RGB 訊號了
完全不用再使用 hotkey 切換了 :D

2 則留言:

jserv 提到...

建議還是以 hack 過的 i810switch,可精確控制 LCD 與 RGB out 的 on/off,節省能源。

Yuren Ju 提到...

用 xrandr 指令也不錯
還是你要試試我的 switch-monitor 也可以 XD