web-dev-qa-db-ja.com

確実に機能するUSB​​ VGAアダプターをお探しですか?

私はこれについてまっすぐな答えを得ることができないようです。 3台目のディスプレイをラップトップと外部モニターのセットアップに追加したいと思います。現在のセットアップ(Thinkpad X201)にはVGAポートが開いています(ラップトップのディスプレイ+ディスプレイポートと外部モニターを使用しています)が、3台のモニターをネイティブに駆動できないようです。

ミックスに別のディスプレイを追加するための私の代替案を探りたいと思います。 displaylinkへの多くの参照を見つけましたが、動作することが絶対に確認されたものはありません。

8
Kendor

ユーザーは、いくつかのパッケージをコンパイルした後、Ubuntu 9.04で動作すると報告しています。 http://mulchman.org/blog/?tag=displaylink

編集:apt-cache検索displaylinkはxserver-xorg-video-displaylinkを返します-DisplayLinkデバイス用のXドライバー...それが機能しない場合は含まれません。すべての解像度をサポートしているわけではありませんが、満足できる以上に機能すると思います。

編集:このセクションをxorg設定に貼り付けてみます:

Section "Device"
Identifier "DisplayLinkDevice"
driver "displaylink"
Option "fbdev" "/dev/fb1"
EndSection

Section "Monitor"
Identifier "DisplayLinkMonitor"
EndSection

Section "Screen"
Identifier "DisplayLinkScreen"
Device "DisplayLinkDevice"
Monitor "DisplayLinkMonitor"
SubSection "Display"
Depth 16
Modes "1280x1024"
EndSubSection
EndSection

Windowsドライバーでも、すべてのチップセットですべての解像度がサポートされているわけではありません。

注目に値するもう1つの点は、一部の構成ではDVIドングルが適切に機能しないことに注意されていることです。

大丈夫多分私はそれを見つけました: http://lists.freedesktop.org/archives/libdlo/2010-November/000807.html


The most interesting thing is that I found out why I can use the
displaylink driver together with nvidia but not the fbdev driver.

This is just an explicit check (xf86Bus.c, xf86PostProbe()) whether both
framebuffer and pci devices have been claimed, if so the server refuses
to start.
The displaylink driver just clears the corresponding fbSlotClaimed flag,
no more magic required. But, there is another (similar) check in
xf86ClaimFbSlot() (xf86fbBus.c) that, when claiming a frambuffer slot,
makes sure no PCI slot has been allocated, I guess thats the reason why
the displaylink driven device must be registered first (as primary screen).

別のスレッドで、グリーンスクリーンの問題はDirectFBの使用に起因する

ここでの議論: http://web.archiveorange.com/archive/v/BNQl8iH957oQe619QVek
彼らは、ゆっくりとはいえ、うまくいったことを示しています。しかし、問題のボックスは266MHzの怪物だったので...

1
RobotHumans