0

-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 1d6b:0002 Linux Foundation 2.0 root hub

Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Bus 001 Device 003: ID 03f0:231d Hewlett-Packard 

Bus 001 Device 004: ID 138a:0007 Validity Sensors, Inc. VFS451 Fingerprint Reader

Bus 001 Device 005: ID 5986:03b1 Acer, Inc 

Bus 002 Device 006: ID 1058:07a8 Western Digital Technologies, Inc. 

Bus 002 Device 003: ID 046d:c018 Logitech, Inc. Optical Wheel Mouse

Bus 002 Device 004: ID 2207:0010 

最后一个是你想要 adb connect 的那个。

/etc/udev/rules.d/51-android.rules:

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

该设备是 pipo s1 平板电脑,所以:xubuntu quantal。在同一台 PC 上可以毫无问题地连接我的手机。

请给我带来光明。

谢谢。

4

2 回答 2

1

尝试将 ATTR{idProduct}=="0010" 添加到该行。

看看这个链接 http://pychildren.blogspot.se/2012/12/getting-android-adb-working-with-pipo.html

问候!/托马斯

于 2013-03-13T22:06:21.347 回答
0

尝试而不是像这样的字符串

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

添加到 /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}"

在我的情况下,它使 adb 在 Ubuntu 12.04 上与另一台设备一起工作。

当然在 ~/.android/adb_usb.ini 添加字符串

0x2207
于 2013-04-19T10:45:34.183 回答