-
-
Save Volcanoscar/060f1a0bc1727c9104113278de4a8cea to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Error: | |
$ adb devices | |
List of devices attached | |
52003c2b58b445db no permissions (user in plugdev group; are your udev rules wrong?); see [http://developer.android.com/tools/device.html] | |
Fix: | |
1> sudo usermod -aG plugdev $LOGNAME (https://developer.android.com/studio/run/device) | |
2> lsusb | |
3> sudo vi /etc/udev/rules.d/51-android.rules | |
4> SUBSYSTEM=="usb", ATTR{idVendor}=="22b8", ATTR{idProduct}=="2e81", MODE="0666", GROUP="plugdev" (idVendor, idProduct found at lsusb command) | |
5> sudo udevadm control --reload-rules | |
6> sudo adb kill-server | |
7> sudo adb start-server | |
( link: https://stackoverflow.com/questions/53887322/adb-devices-no-permissions-user-in-plugdev-group-are-your-udev-rules-wrong) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment