我想阻止在 Linux 上实现的基于信息亭的应用程序的键盘。在某些 Linux 发行版上,可以使用“nohup cat /dev/tty0”来阻止键盘,但它在 Debian 上不起作用。我该如何解决这个问题?
答案1
首先在 xorg.conf 或 xorg.conf.d/misc.conf 中设置以下选项以禁用热插拔:
Section "ServerFlags"
Option "DisableModInDev" "True"
EndSection
然后禁用所有键盘:
Section "InputClass"
MatchIsKeyboard "True"
Option "Ignore" "True"
EndSection