2

I plugged my phone(Samsung Galaxy S I9000) into my Ubuntu computer today, and noticed that my USB debugging didn't come up on my phone(I checked device settings are proper). I'm not sure what happened, I can't figure it out. My computer doesn't recognize my phone and my phone doesn't start running USB debugging. Its checked on my phone but maybe my drivers are screwed up somehow. I have also restarted it, issue adb commands but none helps. Same problem had come on my HTC device too but not know how to resolve it.

Anyone got any tips?

2
  • Does # adb devices list your phone(s)?
    – user942821
    Commented Jul 3, 2012 at 11:07
  • 1
    This did not deserve a downvote. I had exactly the same problem, and unfortunately the information given in the question is all you can find out.
    – Uooo
    Commented Nov 15, 2012 at 19:09

1 Answer 1

4

In ubuntu follwing this steps can configure adb

http://esausilva.com/2010/05/13/setting-up-adbusb-drivers-for-android-devices-in-linux-ubuntu/

You probably didn't add /etc/udev/rules.d/51-android.rules. I got same issue, and it works

for your samsung device add

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

in the above file. more details check that URL

2
  • Can you tell me how to support two different devices(Samsung and HTC) at the same time. Do I need to add another line in that file with different SYSFS{idVendor} value for HTC ??? Thanks. Commented Jul 5, 2012 at 10:38
  • yes for htc add #HTC SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666" Commented Jul 5, 2012 at 13:08

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