Get android debugging to work on Ubuntu 11.04 Natty

我的未来我决定 提交于 2019-12-11 03:15:17

问题


I put a file named "70-android.rules" in

/etc/udev/rules.d/

with

SUBSYSTEM=="usb", SYSFS{22b8}=="22b8", MODE="0666"

but it still wont read my Motorola Atrix, is there something I'm doing wrong? most of the guides I found where for 10.10


回答1:


Just to rule out anything really simple, did you enable USB debugging on your phone?




回答2:


Change the SYSFS tag to ATTRS, works for me. Apparently they've changed the syntax. This is what mine looks like:

SUBSYSTEM=="usb"
ATTRS{idVendor}=="0bb4"
MODE="0666"
GROUP="plugdev"

Of course you keep your current idVendor value, as mine is for HTC. Hope this helps!




回答3:


Well it changed a bit more for ubuntu 11.04

XDA thread here explains it step by step for 11.04 and 10.10



来源:https://stackoverflow.com/questions/6702765/get-android-debugging-to-work-on-ubuntu-11-04-natty

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!