specter-desktop/udev/README.md
Stepan Snigirev 2575aed4ad
Pyinstaller builds (#258)
* pyinstaller specs

* add udev rules

* remove ecdsa dep

* udev rules, pyinstaller spec update

* update udev readme

* Fix issue with Tor service creation

* remove pyinstaller artifacts for bip32

* main -> cli

* remove daemon and debug modes from binaries

* add aarch64 (ARM) build

* fix when no tor

* fix flake8

Co-authored-by: benk10 <ben.kaufman10@gmail.com>
2020-07-26 11:20:13 +02:00

1.2 KiB

udev rules

This directory contains all of the udev rules for the supported devices as retrieved from vendor websites and repositories. These are necessary for the devices to be reachable on linux environments.

Usage

Apply these rules by copying them to /etc/udev/rules.d/ and notifying udevadm. Your user will need to be added to the plugdev group, which needs to be created if it does not already exist.

$ sudo cp udev/*.rules /etc/udev/rules.d/
$ sudo udevadm trigger
$ sudo udevadm control --reload-rules
$ sudo groupadd plugdev
$ sudo usermod -aG plugdev `whoami`