Add access rules for Linux.
This commit is contained in:
parent
4572b10077
commit
72f7e1b972
12
99-dmr.rules
Normal file
12
99-dmr.rules
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#
|
||||||
|
# Enable user access to USB devices of DMR radios.
|
||||||
|
# Install this file into directory: /etc/udev/rules.d
|
||||||
|
# To reload the rules, use:
|
||||||
|
# sudo udevadm control --reload-rules
|
||||||
|
#
|
||||||
|
|
||||||
|
# TYT MD-UV380
|
||||||
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE="666"
|
||||||
|
|
||||||
|
# Baofeng RD-5R
|
||||||
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="15a2", ATTRS{idProduct}=="0073", MODE="666"
|
18
README.md
18
README.md
@ -42,6 +42,24 @@ Update database of contacts from CSV file:
|
|||||||
|
|
||||||
Option -t enables tracing of USB protocol.
|
Option -t enables tracing of USB protocol.
|
||||||
|
|
||||||
|
## Permissions
|
||||||
|
|
||||||
|
On Linux, a permission to access USB device is required.
|
||||||
|
It's possible to run dmrconfig as root, like "sudo dmrconfig",
|
||||||
|
but it's safer to enable access for users.
|
||||||
|
Create a file /etc/udev/rules.d/99-dmr.rules with the following contents:
|
||||||
|
|
||||||
|
# TYT MD-UV380
|
||||||
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", MODE="666"
|
||||||
|
|
||||||
|
# Baofeng RD-5R
|
||||||
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="15a2", ATTRS{idProduct}=="0073", MODE="666"
|
||||||
|
|
||||||
|
To activate it, run:
|
||||||
|
|
||||||
|
sudo udevadm control --reload-rules
|
||||||
|
|
||||||
|
Then re-attach the USB cable to the radio.
|
||||||
|
|
||||||
## Sources
|
## Sources
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user