Linux Installation Guide
Ubuntu / Debian
- Download the latest release (OpenTabletDriver.deb)
-
Run the following commands in a terminal
# Update the package list sudo apt update # Install the package sudo apt install ./OpenTabletDriver.deb
This assumes that you are in the directory in which you downloaded OpenTabletDriver to.
- Refer to this section for instructions on how to auto-start OpenTabletDriver on boot.
If you have the Microsoft dotnet repository installed you will have to either make sure you are not using any packages from that repository or use everything dotnet based off that. Mixing packages from different repositories will cause libhostfxr
issues.
If you’re experiencing libhostfxr
issues, please see the solutions from Microsoft here.
RPM-based distributions
Fedora
- Download the latest release (OpenTabletDriver.rpm)
-
Install the package with the following command:
sudo dnf install ./OpenTabletDriver.rpm
This assumes that you are in the directory in which you downloaded OpenTabletDriver to.
-
Update your initramfs:
sudo dracut --regenerate-all --force
- Refer to this section for instructions on how to auto-start OpenTabletDriver on boot.
openSUSE
- Download the latest release (OpenTabletDriver.rpm)
-
Run commands from this guide to add the Microsoft package repository.
You don’t need to install .NET runtime at this point as zypper will install it as a dependency of OpenTabletDriver.
-
Run the following commands in a terminal
# Update the package list sudo zypper refresh # Install the package sudo zypper --no-gpg-checks install ./OpenTabletDriver.rpm
This assumes that you are in the directory in which you downloaded OpenTabletDriver to.
- Refer to this section for instructions on how to auto-start OpenTabletDriver on boot.
Arch Linux
You can install OpenTabletDriver from the AUR. There are two ways to do this.
- via AUR helper
- manually via makepkg
Then refer to this section for instructions on how to auto-start OpenTabletDriver on boot.
If you are using a ramdisk environment that isn’t
mkinitcpio
, consult its documentation for how to regenerate or rebuild your existing ramdisk images.
AUR helper method
- Use an AUR helper to install the
opentabletdriver
AUR package. -
Run the following commands in a terminal
# Regenerate initramfs sudo mkinitcpio -P # Unload kernel modules sudo rmmod wacom hid_uclogic
makepkg
method
-
Run the following commands in a terminal
# Downloads the pkgbuild from the AUR. git clone https://aur.archlinux.org/opentabletdriver.git # Changes into the correct directory, pulls needed dependencies, then installs OpenTabletDriver cd opentabletdriver && makepkg -si # Clean up leftovers cd .. rm -rf opentabletdriver # Regenerate initramfs sudo mkinitcpio -P # Unload kernel modules sudo rmmod wacom hid_uclogic
Gentoo
-
Add Guru overlay
This is only required if you don’t already have the Guru overlay configured
# Enable guru repository sudo eselect repository enable guru sudo emerge --sync guru
-
Edit
/etc/portage/package.accept_keywords
and add this linex11-drivers/OpenTabletDriver ~amd64
-
Install the package with the following command
sudo emerge OpenTabletDriver
-
Refer to this section for instructions on how to auto-start OpenTabletDriver on boot.
NixOS
-
Edit
/etc/nixos/configuration.nix
and add this in your configuration# Enable OpenTabletDriver hardware.opentabletdriver.enable = true;
More configuration options can be found here.
Post-Installation
Take a look at the FAQ if you encounter any problems.