本文介绍了使用 udev 更改 ttyUSB 权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的程序需要在没有root权限的情况下访问ttyUSB
.
My program needs to access ttyUSB
without root permission.
如您所知,我尝试使用 chmod 777/dev/ttyUSB0
更改它,当我重新启动时,此权限更改为默认值.我如何为此配置我的 udev rules.d?
I tried changing it with chmod 777 /dev/ttyUSB0
as you know, when I reboot this permission changed to default. How can I configure my udev rules.d for this?
推荐答案
在 rules.d
目录中查找 ttyUSB*
并将其更新为如下所示:
Look for ttyUSB*
in the rules.d
directory and update it to look lke below:
KERNEL=="ttyUSB*", MODE="0777"
保留您在该行中找到的任何其他条目不变,如果不存在则添加 mode 属性.
Leave any other entries you find on the line unchanged, add the mode attribute if it does not exist.
这篇关于使用 udev 更改 ttyUSB 权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!