正在寻找确实能用的 USB VGA 适配器?

正在寻找确实能用的 USB VGA 适配器?

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

我想探索一下有什么替代方案可以将另一个显示器加入到组合中。我找到了很多关于 displaylink 的参考资料,但没有一个绝对可以证实有效。

答案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 的怪物,所以……

相关内容