![]() |
|
|
#3 |
|
Junior Member
Join Date: Aug 2021
Posts: 4
|
After having the same issue myself by using a mainline 5.13 kernel in Pop OS, I managed to get the monitors working by having a look at the guide for porting the driver to other distros here: https://support.displaylink.com/know...r-to-other-lin
A small summary though (only tested in PopOs, but should probably work in most Debian/Ubuntu based distros): 1. Make sure you uninstall the current EVDI driver. Do this by calling the currently installed DisplayLink installer file with a "uninstall" argument. For example: Code:
sudo ./displaylink-driver-5.4.0-55.153.run uninstall Code:
./displaylink-driver-5.4.0-55.153.run --noexec --keep Code:
cd ./displaylink-driver-5.4.0-55.153 Code:
curl -L https://github.com/DisplayLink/evdi/archive/refs/heads/devel.tar.gz -o evdi.tar.gz Code:
if ! tar xf "$TARGZ" -C "$EVDI"; then Code:
if ! tar xf "$TARGZ" -C "$EVDI" --strip-components=1; then Last edited by karly; 08-23-2021 at 05:25 PM. Reason: add -L to curl |
|
|
|
|
|