Posts 使 Qt 获取 event 的读写权限
Post
Cancel

使 Qt 获取 event 的读写权限

实际上是对当前用户赋予/dev/input/event*的读写权限。

1
2
$ sudo addgroup input
$ sudo usermod -a -G input debian

有多种方案,列出两种。

方案一

1
$ vim /etc/init.d/rc.local

添加下列内容:

1
2
chgrp input /dev/input/event1
chmod 660 /dev/input/event1

有时候会不起作用。

方案二

使用root权限创建规则文件:

1
$ sudo vim /etc/udev/rules.d/99-input.rules

加入如下内容:

1
KERNEL=="event*", NAME="input/%k", MODE="660", GROUP="input"
This post is licensed under CC BY 4.0 by the author.