未检测到 ThinkPad USB-C 底座中的 DisplayPort

未检测到 ThinkPad USB-C 底座中的 DisplayPort

我的电脑是 ThinkPad T480s,我使用的是 Ubuntu 18.04,在 Unity 上运行 lightdm。插入底座后,我可以使用鼠标和键盘,但无法检测到 DisplayPort。插入后什么也没发生,xrandr 显示:

DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)

我尝试了不同的 DisplayPort 电缆和基座上的端口。我还尝试了不同的显示器。我还尝试切换回默认的 GNOME 显示管理器,但这也没有用。

这是我正在使用的码头:https://www.lenovo.com/us/en/accessories-and-monitors/docking/universal-cable-docks-usb/Thinkpad-USB-C-Dock/p/40A90090US

这是我的电脑:https://www.lenovo.com/us/en/laptops/thinkpad/thinkpad-t-series/ThinkPad-T480s/p/22TP2TT480S

编辑:它突然开始工作了。我重启了几次,并尝试使用 VGA 代替 DisplayPort,结果成功了。当我切换回 DisplayPort 时,一切正常。

答案1

我发现此解决方案适用于联想 T480s、Ubuntu 19.04 和基座 Thinkpad 135 W。

以 root 用户身份创建一个文件 20-displaylink.conf在下面:

/usr/share/X11/xorg.conf.d/

内容如下:

Section "Device"
  Identifier "DisplayLink"
  Driver "modesetting"
  Option "PageFlip" "false"
EndSection

操作步骤:

要创建文件:

cd /usr/share/X11/xorg.conf.d/

touch 20-displaylink.conf

sudo nano 20-displaylink.conf

粘贴内容

Section "Device"
Identifier "DisplayLink"
Driver "modesetting"
Option "PageFlip" "false"
EndSection

然后

control + O

保存

然后

control + x

退出 nano。

然后重启即可生效。

继续使用“模式设置”驱动程序,并且需要禁用页面翻转。

来源: https://support.displaylink.com/knowledgebase/articles/1181623-displaylink-ubuntu-driver-after-recent-x-upgrades

Displayport ubuntu 故障排除页面 https://support.displaylink.com/knowledgebase/topics/103927-troubleshooting-ubuntu

PS:我正在使用从 DVI(显示器)到 dport(底座)的 IO 适配器。

相关内容