Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Add: Installation Guide for RPM based distros. #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions OpenTabletDriver.Web/Views/Wiki/Install/Linux.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,27 @@

<hr/>

<h3 class="wiki-nav-item" id="fedora">
Fedora / CentOS / RHEL
</h3>
<ol>
<li>
Run the following commands in a terminal to install and enable the OpenTabletDriver service.
<codeblock class="mt-2" language="bash">
# This will download and install the package
sudo dnf install -y https://opentabletdriver.net/Release/Download/OpenTabletDriver.rpm

# Reload the systemd user unit daemon
systemctl --user daemon-reload

# Enable and start the user service
systemctl --user enable opentabletdriver --now
</codeblock>
</li>
</ol>

<hr/>

<h3 class="wiki-nav-item" id="arch">
Arch Linux
</h3>
Expand Down