| title | Linux Installation Guide |
|---|---|
| hide_from_auto_list | true |
{% assign latest_otd_version = site.data.otd-versions | last %}
{% assign deb_filename = site.data.links.project.latestRelease.deb | replace: '{{VERSION}}', latest_otd_version %}
-
{% include latest-release.html filename=deb_filename %}
-
Run the following commands in a terminal
# Update the package list sudo apt update # Install the package sudo apt install ./{{ deb_filename }}
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 run into uninstallable dependency issues with dotnet, you will need to install it through Microsoft's dotnet repository.
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 }}).
{% assign rpm_filename = site.data.links.project.latestRelease.rpm | replace: '{{VERSION}}', latest_otd_version %}
-
{% include latest-release.html filename=rpm_filename %}
-
Install the package with the following command:
sudo dnf install ./{{ rpm_filename }}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.
-
{% include latest-release.html filename=site.data.links.project.latestRelease.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.
While EndeavourOS is based on Arch Linux, it uses a different initramfs generator compared to standard Arch Linux, which means the post-install setup is different.
-
Install the
opentabletdriverAUR package with either the GUI package utility, Pamac, or the command-line utility,yayyay -S opentabletdriver
-
Then, run the following commands in a terminal
{% include wiki/arch-install-steps.md ramdisk_update_command="dracut-rebuild" %}
Then 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
{% include wiki/arch-install-steps.md %}
- Run the following commands in a terminal
{% include wiki/arch-install-steps.md makepkg=true %}
-
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}
Bazzite is based on Fedora Atomic. We recommend using ujust to install OpenTabletDriver:
ujust install-opentabletdriverTake a look at the [FAQ]({% link _wiki/FAQ/Linux.md %}) if you encounter any problems.