| title | Linux Installation Guide |
|---|---|
| hide_from_auto_list | true |
-
Download the [latest release]({{ site.data.links.project.latestRelease.deb }}) (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]({% link _wiki/FAQ/Linux.md %}#autostart) 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]({{ site.data.links.external.Microsoft.DotnetLinuxPackageMixup }}).
-
Download the [latest release]({{ site.data.links.project.latestRelease.rpm }}) (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]({% link _wiki/FAQ/Linux.md %}#autostart) for instructions on how to auto-start OpenTabletDriver on boot.
[Terra]({{ site.data.links.external.Terra.website }}) also provides RPM builds for Fedora, Ultramarine and RHEL 10-based distributions.
-
Add the Terra repository
sudo dnf install --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' --setopt='terra.gpgkey=https://repos.fyralabs.com/terra$releasever/key.asc' terra-release
-
Install OpenTabletDriver
sudo dnf install opentabletdriver
-
Refer to [this section]({% link _wiki/FAQ/Linux.md %}#autostart) for instructions on how to auto-start OpenTabletDriver on boot.
-
Download the [latest release]({{ site.data.links.project.latestRelease.rpm }}) (OpenTabletDriver.rpm)
-
Run commands from [this guide]({{ site.data.links.external.Microsoft.AddMicrosoftRepoOpenSUSE }}) 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]({% link _wiki/FAQ/Linux.md %}#autostart) for instructions on how to auto-start OpenTabletDriver on boot.
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]({% link _wiki/FAQ/Linux.md %}#autostart) 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. {:.alert-primary}
-
Use an AUR helper to install the
opentabletdriverAUR package. -
Run the following commands in a terminal
# Regenerate initramfs sudo mkinitcpio -P # Unload kernel modules sudo rmmod wacom hid_uclogic
-
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
-
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_keywordsand add this linex11-drivers/OpenTabletDriver ~amd64 -
Install the package with the following command
sudo emerge OpenTabletDriver
-
Refer to [this section]({% link _wiki/FAQ/Linux.md %}#autostart) for instructions on how to auto-start OpenTabletDriver on boot.
-
Edit
/etc/nixos/configuration.nixand add this in your configuration# Enable OpenTabletDriver hardware.opentabletdriver.enable = true;
More configuration options can be found here. {:.alert-primary}
Take a look at the [FAQ]({% link _wiki/FAQ/Linux.md %}) if you encounter any problems.