我似乎无法得到一个直接的答案。我想在我的笔记本电脑 + 外接显示器设置上添加第三个显示器。虽然我当前的设置(Thinkpad X201)有一个开放的 VGA 端口(我正在使用笔记本电脑的显示器 + 带有外接显示器的显示器端口),但我似乎无法原生驱动 3 个显示器。
我想探索我的替代方案是什么让另一个显示器进入组合。我发现了很多对 displaylink 的引用,但没有任何东西绝对证实有效。
我似乎无法得到一个直接的答案。我想在我的笔记本电脑 + 外接显示器设置上添加第三个显示器。虽然我当前的设置(Thinkpad X201)有一个开放的 VGA 端口(我正在使用笔记本电脑的显示器 + 带有外接显示器的显示器端口),但我似乎无法原生驱动 3 个显示器。
我想探索我的替代方案是什么让另一个显示器进入组合。我发现了很多对 displaylink 的引用,但没有任何东西绝对证实有效。
一位用户在编译一些软件包后报告它在 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的怪物所以......