Skip to content Skip to sidebar Skip to footer

Adb Doesn't See Device

-Lsusb: Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 001 Device 001: ID

Solution 1:

Try to add ATTR{idProduct}=="0010" to the line.

Have a look at this link http://pychildren.blogspot.se/2012/12/getting-android-adb-working-with-pipo.html

Regards! /Thomas

Solution 2:

Try instead of strings like

SUBSYSTEM=="usb", ATTR{idVendor}=="2207", MODE=="0666", GROUP="plugindev"

add to /etc/udev/rules.d/51-android.rules

SUBSYSTEMS=="usb", ATTRS{idVendor}=="2207", TEST=="/var/run/ConsoleKit/database", RUN+="udev-acl --action=$env{ACTION} --device=$env{DEVNAME}"

It makes adb work on Ubuntu 12.04 with another device in my case.

And of course in ~/.android/adb_usb.ini add string

0x2207

Post a Comment for "Adb Doesn't See Device"