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

link|improve this question

feedback

3 Answers

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

link|improve this answer
yes I have, it works fine with my window and osx machines – Narhem Jul 15 '11 at 5:36
Have you already looked through Google's guide on it? For example, one thing I noticed is that this guide says to create a file named "51-android.rules". I'm not actually sure if the 51 means anything significant though. – kibibyte Jul 15 '11 at 5:44
@GiantMarsmallow those are for much older versions of Ubuntu, other guides I found on 10.10 say to use 70 instead of 51 – Narhem Jul 15 '11 at 5:50
Hmm...then I'm not sure what to say, since I haven't really done much with Android on Linux. +1 to give you a bit more visibility. – kibibyte Jul 15 '11 at 6:09
feedback

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!

link|improve this answer
feedback
up vote 1 down vote accepted

Well it changed a bit more for ubuntu 11.04

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.