Skip to content

Open USB port

Igor Usenko edited this page Jun 8, 2022 · 1 revision

https://www.xmodulo.com/change-usb-device-permission-linux.html

  1. connect the watch to USB

  2. run

        lsusb -vvv`
  1. find smth like
        idVendor           0x10c4 Silicon Labs
        idProduct          0xea60 CP210x UART Bridge
  1. prepare string rule with values and copy it
        SUBSYSTEMS=="usb", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", GROUP="users", MODE="0666"
  1. run
        sudo vi /etc/udev/rules.d/50-myusb.rules
  1. paste copied string and :wq vim

  2. disconnect the watch from USB

  3. run

        sudo udevadm control --reload
  1. connect the watch to USB and verify
Clone this wiki locally