Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect Android to PC

Tags:

android

ddms

I'm trying to connect my Samsung Galaxy to PC but ddms tool does not recognize my phone. USB debugging is enabled. What can cause a problem?

PS. I'm using Ubuntu 9.10 OS.

Thanks.

like image 658
S2201 Avatar asked Feb 13 '10 22:02

S2201


1 Answers

You should add a rule to /etc/udev/rules.d (i.e.: 51-android.rules):

SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666"

just in case verify that the id for your phone matches 0x04e8 using lsusb. Once the new rule is added just reload them by

$ sudo udevadm control --reload-rules

like image 173
Diego Torres Milano Avatar answered Oct 26 '22 20:10

Diego Torres Milano