Difference between revisions of "DisplayLink"
Jump to navigation
Jump to search
Line 14: | Line 14: | ||
sudo displaylink-installer | sudo displaylink-installer | ||
</source> | </source> | ||
Extracting the driver components | |||
The Ubuntu driver components can be extracted for repackaging using the command: | |||
./displaylink-driver-0.9.68.run --noexec --keep | |||
The following files will be extracted: | |||
*./ | |||
*displaylink-installer.sh - The installation shell script. | |||
*evdi-1.0.68-src.tar.gz - The open source code, from GitHub | |||
*LICENSE | |||
*ella-dock-release.spkg - The firmware image for DL-3xxx and DL-5xxx devices. This will be programmed into the DisplayLink IC, if the current firmware version in the device does not match this version. | |||
*firefly-monitor-release.spkg - The firmeware image for DL-4xxx devices. This will be programmed into the DisplayLink IC, if the current firmware version in the device does not match this version. | |||
*./x86 and ./x64 | |||
*DisplayLinkManager - The user mode binary driver for DisplayLink devices | |||
*libevdi.so - The pre-built library taken from the open source evdi project code | |||
*libusb-1.0.so.0.1.0 - The standard, unmodified library to access our DisplayLink USB devices. The source code for this is also available. | |||
= References = | = References = | ||
*[https://support.displaylink.com/knowledgebase/articles/684649 How to install DisplayLink software on Ubuntu] DisplayLink Support | *[https://support.displaylink.com/knowledgebase/articles/684649 How to install DisplayLink software on Ubuntu] DisplayLink Support |
Revision as of 21:33, 14 May 2018
Install on Ubuntu 16 LTS
sudo apt-get install linux-generic-lts-xenial xserver-xorg-lts-xenial xserver-xorg-video-all-lts-xenial xserver-xorg-input-all-lts-xenial sudo apt-get install dkms # define the version to get as the latest available version version=`wget -q -O - http://www.displaylink.com/downloads/ubuntu | grep "download-version" | head -n 1 | perl -pe '($_)=/([0-9]+([.][0-9]+)+)/'` # define download url to be the correct version dlurl="http://www.displaylink.com/"`wget -q -O - http://www.displaylink.com/downloads/ubuntu | grep "download-link" | head -n 1 | perl -pe '($_)=/<a href="\/([^"]+)"[^>]+class="download-link"/'` driver_dir=$version
Verify installed driver version
sudo displaylink-installer
Extracting the driver components
The Ubuntu driver components can be extracted for repackaging using the command:
./displaylink-driver-0.9.68.run --noexec --keep
The following files will be extracted:
- ./
- displaylink-installer.sh - The installation shell script.
- evdi-1.0.68-src.tar.gz - The open source code, from GitHub
- LICENSE
- ella-dock-release.spkg - The firmware image for DL-3xxx and DL-5xxx devices. This will be programmed into the DisplayLink IC, if the current firmware version in the device does not match this version.
- firefly-monitor-release.spkg - The firmeware image for DL-4xxx devices. This will be programmed into the DisplayLink IC, if the current firmware version in the device does not match this version.
- ./x86 and ./x64
- DisplayLinkManager - The user mode binary driver for DisplayLink devices
- libevdi.so - The pre-built library taken from the open source evdi project code
- libusb-1.0.so.0.1.0 - The standard, unmodified library to access our DisplayLink USB devices. The source code for this is also available.
References
- How to install DisplayLink software on Ubuntu DisplayLink Support
- Porting Ubuntu driver to other distribution DisplayLink Support
- Install Display Link Ubuntu Official
- Supported Chips on Linux Wikimedia
- DisplayLink driver installer for Debian GNU/Linux, Ubuntu, Elementary OS, Mint, Kali and Deepin Linux Github repo