Introduction
To install Shadow on Ubuntu, follow this guide. Before proceeding, ensure you meet the device requirements for this operating system.
How to Install Shadow on Ubuntu
Step 1: Download the AppImage
- Download the launcher from the Shadow website.
- The AppImage will start downloading. Locate it in your default download folder.
Step 2: Install Package Files
- Start the downloaded AppImage by double-clicking or executing the command:
./Shadow.AppImage
- Install the necessary packages using the command:
sudo apt install libva-glx2 libvdpau1 libva-drm2 libcurl4 libva-wayland2
Installing these packages is crucial for Shadow to function properly.
Step 3: Add to Input Group
To enhance your Shadow experience, add your user to the input group using the command: sudo usermod -a -G input $USER
. Log out and log back in to apply the changes.
How to Add Wayland Support
Shadow utilizes the Wayland display server protocol on Ubuntu. If Wayland is detected, Shadow will use it by default. For optimal performance with this protocol, follow these steps:
Step 1: Activate the "uinput" Module
Execute the command: echo "uinput" /etc/modules-load.d/uinput.conf
Step 2: Give Shadow Permission to Use the "input" Module
- Create the file
/etc/udev/rules.d/65-shadow-client.rules
if it doesn't exist. - Add the following content:
KERNEL=="uinput", MODE="0660", GROUP="shadow-input"
Step 3: Add the User to the shadow-input Group
Execute the command: usermod -a -G shadow-input $USER
After completing these steps, restart your computer.