You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.0 KiB
60 lines
2.0 KiB
2 years ago
|
+++
|
||
|
title = "Tuxedo keyboard"
|
||
|
date = "2022-12-09T21:52:31+01:00"
|
||
|
|
||
|
draft = true
|
||
|
|
||
|
+++
|
||
|
|
||
|
## Manjaro Linux
|
||
|
|
||
|
check what kernel `uname -a` and install linux headers
|
||
|
|
||
|
sudo pacman -S linux515-headers
|
||
|
|
||
|
install tuxedo-keyboard
|
||
|
|
||
|
sudo pacman -S tuxedo-keyboard-dkms
|
||
|
|
||
|
source: <https://www.tuxedocomputers.com/de/Infos/Hilfe-Support/Anleitungen/Tastatur-Treiber-fuer-TUXEDO-Computers-Modelle-mit-RGB-Tastatur-nachinstallieren.tuxedo>
|
||
|
|
||
|
github: <https://github.com/tuxedocomputers/tuxedo-keyboard>
|
||
|
|
||
|
<https://github.com/tuxedocomputers/tuxedo-control-center>
|
||
|
|
||
|
## Fedora Linux
|
||
|
|
||
|
https://www.reddit.com/r/tuxedocomputers/comments/uq6hka/how_to_get_tuxedo_control_center_working_on/
|
||
|
|
||
|
<iframe src="https://mastodon.radio/@oe7drt/109225376239638009/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="400" allowfullscreen="allowfullscreen"></iframe>
|
||
|
|
||
|
How to get TUXEDO Control Center working on Fedora 36
|
||
|
The tuxedo-keyboard and tuxedo-control-center packages are already available in the Fedora copr repositories, but the tuxedo-keyboard package is currently outdated and will not work with the newest Fedora kernel (currently 5.17.6-300.fc36.x86_64). This is how to fix it in the meantime.
|
||
|
|
||
|
Just install both packages as you would normally
|
||
|
|
||
|
sudo dnf install kernel-devel
|
||
|
sudo dnf copr enable kallepm/tuxedo-keyboard
|
||
|
sudo dnf copr enable kallepm/tuxedo-control-center
|
||
|
sudo dnf install tuxedo-control-center
|
||
|
You will notice that fan control isn't working, because the tuxedo-keyboard package is outdated and you will have to compile the newest version yourself.
|
||
|
|
||
|
Clone the tuxedo-keyboard GitHub repo:
|
||
|
|
||
|
cd /tmp
|
||
|
git clone https://github.com/tuxedocomputers/tuxedo-keyboard.git
|
||
|
cd tuxedo-keyboard
|
||
|
git checkout release
|
||
|
Then build the module and ignore any error about vmlinux being unavailable:
|
||
|
|
||
|
make clean && make
|
||
|
Add the module as DKMS module:
|
||
|
|
||
|
make clean
|
||
|
sudo make dkmsinstall
|
||
|
And finally load the modules with modprobe:
|
||
|
|
||
|
sudo modprobe tuxedo_keyboard
|
||
|
sudo modprobe tuxedo_io
|
||
|
Now the TUXEDO Control Center should work again or maybe after a reboot.
|