mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
|
Some checks failed
Build Docker container on push / Build image (push) Has been cancelled
Tests / test (push) Has been cancelled
Tests / cypress (push) Has been cancelled
Tests / extension-smoketest (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Black Python Linter / black (push) Has been cancelled
Co-authored-by: Nazim <nazim@openclaw.ai> Co-authored-by: k9ert <117085+k9ert@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| 20-hw1.rules | ||
| 49-micropython.rules | ||
| 51-coinkite.rules | ||
| 51-hid-digitalbitbox.rules | ||
| 51-trezor.rules | ||
| 51-usb-keepkey.rules | ||
| 52-hid-digitalbitbox.rules | ||
| 53-hid-bitbox02.rules | ||
| 54-hid-bitbox02.rules | ||
| 55-usb-jade.rules | ||
| README.md | ||
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.
20-hw1.rules(Ledger): https://github.com/LedgerHQ/udev-rules/blob/master/20-hw1.rules51-coinkite.rules(Coldcard): https://github.com/Coldcard/ckcc-protocol/blob/master/51-coinkite.rules51-hid-digitalbitbox.rules,52-hid-digitalbitbox.rules(Digital Bitbox): https://shiftcrypto.ch/start_linux51-trezor.rules(Trezor): https://github.com/trezor/trezor-common/blob/master/udev/51-trezor.rules51-usb-keepkey.rules(Keepkey): https://github.com/keepkey/udev-rules/blob/master/51-usb-keepkey.rules49-micropython.rules(Specter-DIY): http://wiki.micropython.org/Installation#USB-Permissioning-on-Linux
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`