A solution was found, or so it seems.
It all led to this glorious commit.
[SOLVED] ut2004 crash on CEONSS using Luxtorpeda 61
-
- Posts: 12
- Joined: Tue 21. Mar 2023, 23:33
- Description: Hail the H.S.M!
-
- Posts: 2030
- Joined: Sun 7. Jun 2015, 22:12
- Description: https://discord.gg/X4V8THM
- Location: Germany
[SOLVED] ut2004 crash on CEONSS using Luxtorpeda 61
Happy that he could fix it, thanks for letting us know. =)Gil-galad wrote: ↑Thu 30. Mar 2023, 22:21 A solution was found, or so it seems.
It all led to this glorious commit.
-
- Posts: 4
- Joined: Mon 28. Nov 2022, 10:10
[SOLVED] ut2004 crash on CEONSS using Luxtorpeda 61
Hi
i have a new keyboard and the same problem now.
i found the solution...
the keyboard is recognized as a mouse (firmware bug). The keyboard presses 25 keys per second and this causes AntiTCC to crash.
run the command in terminal: xev
(package inside x11-utils
sudo apt-get install x11-utils)
the virtual keyboard pressing 25 keys per sec ( keycode 248) quick and dirty solution-> shell script after login
better solution -> udev rule
/usr/share/X11/xorg.conf.d/ or /etc/udev/rules.d/
i have a new keyboard and the same problem now.
Code: Select all
Critical: AntiTCCInputMonitor Package.AntiTCCInputMonitor (Function AntiTCC2009r6.AntiTCCInputMonitor.O22034O:0012) Assertion failed, line 374
Exit: Executing UObject::StaticShutdownAfterError
Exit: Executing USDLClient::ShutdownAfterError
Log: Waiting for file streaming thread to finish...
Exit: OpenAL Audio subsystem shut down.
Exit: Exiting.
the keyboard is recognized as a mouse (firmware bug). The keyboard presses 25 keys per second and this causes AntiTCC to crash.
run the command in terminal: xev
(package inside x11-utils
sudo apt-get install x11-utils)
the virtual keyboard pressing 25 keys per sec ( keycode 248) quick and dirty solution-> shell script after login
Code: Select all
#!/bin/sh
ids=$(xinput list --id-only 'pointer:CHERRY CHERRY Keyboard')
xinput disable $ids
/usr/share/X11/xorg.conf.d/ or /etc/udev/rules.d/
Code: Select all
Section "InputClass"
Identifier "CHERRY"
Driver "evdev"
MatchProduct "CHERRY CHERRY Keyboard"
MatchIsPointer "on"
Option "Ignore" "on"
EndSection
You do not have the required permissions to view the files attached to this post.