web-dev-qa-db-ja.com

ThinkPad USB-CドックのDisplayPortが検出されない

私のコンピューターはThinkPad T480で、Unityでlightdmを実行しているUbuntu 18.04を使用しています。ドックに接続されているマウスとキーボードを使用できますが、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

EDIT:それは突然働き始めました。数回再起動して、DisplayPortの代わりにVGAを試しましたが、うまくいきました。 DisplayPortに切り替えたところ、すべて問題なく動作しました。

8
SiXoS

このソリューションは、Lenovo T480、Ubuntu 19.04、dockstation Thinkpad 135 Wで見つかります。

Rootユーザーとして、file20-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を終了します。

その後、再起動して有効にします。

"modesetting"ドライバーを使用し続け、ページめくりを無効にする必要があります。

ソース: https://support.displaylink.com/knowledgebase/articles/1181623-displaylink-ubuntu-driver-after-recent-x-upgrades

Displayport Ubuntuトラブルシューティングページ https://support.displaylink.com/knowledgebase/topics/103927-troubleshooting-ubunt

PS:私はIO DVI(モニター)からdport(ドック)へのアダプターを使用しています。

1