我尝试使用0666权限自动挂载以下设备:
lsusb -vvv
Bus 001 Device 094: ID 0403:6014 Future Technology Devices International, Ltd FT232H Single HS USB-UART/FIFO IC
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 64
idVendor 0x0403 Future Technology Devices International, Ltd
idProduct 0x6014 FT232H Single HS USB-UART/FIFO IC
bcdDevice 9.00
iManufacturer 1 FTDI
iProduct 2 C232HM-DDHSL-0
iSerial 3 FTVWEM02
bNumConfigurations 1
为实现这一目标,我在/etc/udev/rules.d
中创建了以下udev规则SUBSYSTEM=="usb", ATTR{idVendor}=="0403", ATTR{idProduct}=="6014", MODE="0666", RUN+="/usr/bin/touch /tmp/udev-test.txt"code here
如您所见,我使用测试文件验证规则的功能。该文件始终在USB设备的连接上创建。
-rw-r--r-- 1 root root 0 Oct 20 09:56 udev-test.txt
这应该意味着该规则正在运行......但它永远不会获得权限。
运行ls -l /dev/ttyU*
时,我得到以下结果:
crw-rw---- 1 root dialout 188, 0 Oct 20 09:56 /dev/ttyUSB0
奇怪的是,如果我以root身份从命令行运行chmod,我总是可以更改设备的权限。我希望自动在每个插件上发生这种情况。你能帮我吗?
我正在运行Scientific Linux 7
Linux version 4.7.5-1.el7.elrepo.x86_64 (mockbuild@Build64R7) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) ) #1 SMP Sat Sep 24 11:54:29 EDT 2016
我搜索过的主题: