Talk:DisplayLink

From ArchWiki
Latest comment: 9 October 2023 by Brend in topic Random Disconnects and Reconnects

TODO

  • Single X server layouts with a normal monitor and a DL monitor are notably quite difficult to get working. Elaborate on this, provide external links to the related broken packages and what people are doing to fix this.
  • Write a section for multi-X server layouts and include ways to combine them. Even if we can't move windows between monitors, this is better than nothing.

DisplayLink driver does not work with Intel GPUs after recent X upgrades

This seems to work again with the DisplayLink driver version 5. After more people have it working again, we might want to add this to the wiki.

Hanckmann (talk) 09:05, 6 March 2019 (UTC)Reply[reply]

fb_defio=1

fb_defio=1 module option was removed from this page, since commit 9f811b72c669e29f8c01e258d912254065e58f11 to linux-stable has added it by default.

If this breaks anything, please go ahead and re-add it, but let me know because I'm pretty convinced it's not required.

Ndt (talk) 06:38, 2 June 2013 (UTC)Reply[reply]

DELL displayLink model DA100 now working...

With kernel 4.1 or higher , and after installing the USB drivers of the wiki. Start the service ( sytemctl start displaylink.service ) that with the DA100 adapter ( 4 in 1 - VGA ,HDMI,Ethernet and USB 2.0 ) works.

DisplayLink USB 3.0 w/DL-3x00 Suspend/Resume Issues

Just to note there are some resume issues when a system goes into suspend (in my case, Lenovo Thinkpad USB 3.0 Dock w/2 DVI monitors). On resume, xrandr --listproviders shows the providers, and enabling them doesn't seem to do anything: Gnome doesn't see the monitors. Also, the NIC and Audio devices are not found. Unplugging/replugging the USB doesn't change either. I have to Power Off the USB 3.0 Dock and power it back on. Haven't had that issue under Windows across multiple notebooks before.

Eduncan911 (talk) 15:25, 21 January 2016 (UTC)Reply[reply]

Not showing in --listproviders until a screen is plugged in

Maybe there should be a note about this? I thought it would show up as a provider even if nothing was plugged in.

xrandr --listproviders isn't showing all my displays

Install evdi from AUR repositories. If that gives error like "logpipe: unbound variable", then install linux-headers with pacman. Restart. Ref: this discussion here https://aur.archlinux.org/packages/evdi-git/

Random Disconnects and Reconnects

Installing and using the DisplayLink software worked without problems following the instructions in this post. However, when using it, I kept getting the problem that the connection to the screens was interrupted and then restored after a few seconds, resulting in a momentary black screen.

After some research I think I found a possible problem. I think the problem is with the USB autosuspend. After the installation the file /etc/udev/rules.d/99-displaylink.rules is created. Here I disabled the USB autosuspend by adding "ATTR{power/autosuspend}="-1"".

Example:

ACTION=="add", SUBSYSTEM=="usb", DRIVERS=="usb", ATTRS{idVendor}=="17e9", ATTR{power/autosuspend}="-1", ATTR{bInterfaceClass}=="ff", ATTR{bInterfaceProtocol}=="03", ENV{ID_DISPLAYLINK_DEVICE}="1", RUN+="/opt/displaylink/udev.sh START"

After a reboot, the problem has resolved.

Maybe someone can confirm me this solution? Brend (talk) 13:27, 9 October 2023 (UTC)Reply[reply]