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.

2.0 KiB

+++ 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/

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.