正在寻找可靠的 USB VGA 适配器?

Ken*_*dor 8 hardware xorg 10.10 usb

我似乎无法得到直接的答案。我想在我的笔记本电脑 + 外接显示器设置上添加第三台显示器。虽然我当前的设置 (Thinkpad X201) 有一个开放的 VGA 端口(我使用笔记本电脑的显示器 + 带外接显示器的显示器端口),但我似乎无法在本机驱动 3 台显示器。

我想探索一下我的替代方案是什么让另一个显示器融入其中。我发现了很多对 displaylink 的引用,但没有绝对证实有效。

Rob*_*ans 1

一位用户报告说它在编译一些软件包后可以在 Ubuntu 9.04 上运行:http://mulchman.org/blog/?tag=displaylink

编辑: apt-cache search 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 驱动程序,并非所有芯片组都支持所有分辨率。

值得注意的另一点是,在某些配置中,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 的怪物,所以......