Skip to content

Using U2F Token on Linux (udev)

Conor Patrick edited this page Jun 14, 2016 · 5 revisions

Devices using the HID class for U2F tokens are initially only accessible to root users on Linux. To fix this, a udev rule must be added.

  • Open /etc/udev/70-u2f.rules
  • Add the following:
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="8acf", TAG+="uaccess"
  • Save and run:
sudo udevadm trigger
Clone this wiki locally