Alex
Alex

Reputation: 165

Unable to connect my android phone (XOLO a500) to adb

Unable to connect phone with adb under Ubuntu (64-bit) , it shows

List of devices attached 
????????????    no permissions

I am using android device (XOLO A500), i goggled for its vender id so that i can add it in 51-android.rules file but i didn't found vender id.

Is there any way to connect my phone with adb ?

Thanks,

Upvotes: 2

Views: 2204

Answers (3)

Chris Stratton
Chris Stratton

Reputation: 40357

I am using android device (XOLO A500), i goggled for its vender id so that i can add it in 51-android.rules file but i didn't found vender id.

Your observed adb devices output is indeed consistent with not having the permissions to the device normally granted by a udev rule.

On a linux system such as yours, you can determine the vendor ID of an attached Android device by issuing the lsusb command.

If there is any doubt about which device is the phone, issue it both with the phone connected and unconnected, and the device of interest will be the difference.

Once you have created the rule, you will need to tell udev to reload its rules and then likely replug the device (rebooting is a more drastic but effective alternative).

Upvotes: 1

Andy1625
Andy1625

Reputation: 41

Xolo phones (Q700) use YunOS ACB Interface drivers for USB debugging.

You can download from http://binarydb.com/driver/YunOS-ACB-Interface-240854.html

I tried with HTC drivers, it didnt work.

Upvotes: 0

Nagaraja
Nagaraja

Reputation: 581

You can find the Vender Id from Device Manager -->> Right click on the Drivers-->> select the property---> select the details in that you can get the details of the device with vender id etc..

Upvotes: 0

Related Questions