Install DisplayLink driver on Ubuntu

2 min read 1 year ago
Published on Aug 27, 2024 This response is partially generated with the help of AI. It may contain inaccuracies.

Table of Contents

Introduction

This tutorial provides a step-by-step guide on how to install the DisplayLink driver on Ubuntu. DisplayLink allows you to connect multiple external monitors to your system, enhancing your productivity. Follow these instructions to ensure a successful installation.

Step 1: Download the DisplayLink Driver

  1. Visit the official DisplayLink download page:
  2. Locate the appropriate driver version for your Ubuntu distribution.
  3. Download the .deb file to your computer.

Step 2: Open Terminal

  1. Press Ctrl + Alt + T to open a Terminal window.
  2. Navigate to the directory where the downloaded .deb file is located. For example:
    cd ~/Downloads
    

Step 3: Install the DisplayLink Driver

  1. Use the command below to install the driver:
    sudo dpkg -i displaylink-driver*.deb
    
  2. If you encounter any dependency errors, run the following command to fix them:
    sudo apt-get install -f
    

Step 4: Load the DisplayLink Kernel Module

  1. After installation, load the DisplayLink kernel module with this command:
    sudo modprobe evdi
    
  2. You may want to verify that the module is loaded successfully by checking the output of:
    lsmod | grep evdi
    

Step 5: Reboot Your System

  1. Restart your computer to apply the changes and complete the installation.

Step 6: Connect External Monitors

  1. After rebooting, connect your external monitors to the USB DisplayLink adapter.
  2. Your system should automatically detect the monitors. You can adjust settings in the Display settings menu.

Conclusion

You have successfully installed the DisplayLink driver on Ubuntu, allowing you to use multiple external monitors. If you encounter any issues, double-check the steps and ensure all commands are executed correctly. For further customization, explore Ubuntu's display settings to arrange your monitors as needed.