Answers:
这里有很好的指导说明,标题为:在Linux中禁用/启用键盘和鼠标。
您可以使用此命令列出设备。
$ xinput --list
"Virtual core pointer" id=0 [XPointer]
"Virtual core keyboard" id=1 [XKeyboard]
"Keyboard2" id=2 [XExtensionKeyboard]
"Mouse2" id=3 [XExtensionKeyboard]
然后禁用键盘:
$ xinput set-int-prop 2 "Device Enabled" 8 0
并启用此功能:
$ xinput set-int-prop 2 "Device Enabled" 8 1
这仅适用于通过X禁用键盘的功能。因此,如果您使用的系统未运行X,则将无法使用。
您可以使用此命令来获取给定设备的所有属性的列表:
$ xinput --list-props 2
Device 'Virtual core keyboard':
Device Enabled (124): 1
Coordinate Transformation Matrix (126): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
lsmod | grep usb
)。