mirror of
https://github.com/rainloreley/artnet-usbdmx-converter.git
synced 2024-11-22 02:13:02 +01:00
improved linux documentation
This commit is contained in:
parent
77e3b51758
commit
b33f290539
23
README.md
23
README.md
|
@ -18,20 +18,33 @@ $ sudo cp 50-usbdmx.rules /etc/udev/rules.d/
|
||||||
$ sudo udevadm control --reload-rules
|
$ sudo udevadm control --reload-rules
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Use another interface
|
||||||
If you're using another interface other than the ones [listed below](#compatible-interfaces), you need to add them to the udev rule manually
|
If you're using another interface other than the ones [listed below](#compatible-interfaces), you need to add them to the udev rule manually
|
||||||
|
|
||||||
|
First, get all USB devices connected to the computer and find your interface
|
||||||
```bash
|
```bash
|
||||||
# Get all usb devices and find your interface
|
|
||||||
$ lsusb
|
$ lsusb
|
||||||
Bus 003 Device 021: ID 16c0:088b Van Ooijen Technische Informatica USB DMX
|
Bus 003 Device 021: ID 16c0:088b Van Ooijen Technische Informatica USB DMX
|
||||||
[...]
|
[...]
|
||||||
|
```
|
||||||
|
|
||||||
# First copy the existing udev rules-file like mentioned above, then edit:
|
Then copy the existing udev rules-file like mentioned above, and edit it
|
||||||
|
|
||||||
|
```bash
|
||||||
$ sudo nano /etc/udev/rules.d/50-usbdmx.rules
|
$ sudo nano /etc/udev/rules.d/50-usbdmx.rules
|
||||||
|
```
|
||||||
|
|
||||||
# Duplicate the last line and change "idVendor" and "idProduct" to match the ID returned by lsusb
|
Duplicate the last line and change the values after "idVendor" and "idProduct" to match the ID returned by lsusb
|
||||||
# In this example:
|
|
||||||
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="088b", MODE="0666"
|
Example for ID `1234:5678`
|
||||||
|
```bash
|
||||||
|
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="1234", ATTRS{idProduct}=="5678", MODE="0666"
|
||||||
|
```
|
||||||
|
|
||||||
|
Save, disconnect the interface and reload the udev rules
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ sudo udevadm control --reload-rules
|
||||||
```
|
```
|
||||||
|
|
||||||
# Compatible interfaces
|
# Compatible interfaces
|
||||||
|
|
Loading…
Reference in New Issue
Block a user