Created
August 13, 2021 14:16
-
-
Save Piskvor/653a0ba117b316aafdba6ebaee89e40e to your computer and use it in GitHub Desktop.
Ubuntu 18.04 u2f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# find the new device | |
lsusb -t | |
> Port 3: Dev 20, If 1, Class=Chip/SmartCard | |
# device number from lsusb "Dev" | |
lsusb -s 20 | |
> Bus 001 Device 020: ID 32a3:3201 | |
# ID from lsusb; splits into vendor:device | |
# file*name* doesn't quite matter, if it's in the right directory | |
editor /etc/udev/rules.d/70-u2f.rules | |
# this udev file should be used with udev 188 and newer | |
ACTION!="add|change", GOTO="u2f_end" | |
# Key-ID FIDO U2F | |
# note that we're using the values of vendor:device we got from lsusb | |
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="32a3", ATTRS{idProduct}=="3201", TAG+="uaccess" | |
LABEL="u2f_end" | |
# save file and quit editor | |
sudo systemctl restart udev | |
sudo udevadm trigger |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment