I am trying to add my Alcatel device on linux environment using this link

Problem: not able to debug using this device

./adb devices
List of devices attached
????????????    no permissions

Followed this procedure:

  1. sudo gedit etc/udev/rules.d/51-android.rules
  2. Added this line
SUBSYSTEM=="usb" , ATTRS{idVendor}=="05c6" , ATTRS{idProduct}=="9018" , MODE="0666"

But still it is not working.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Solved the problem :

  1. sudo gedit etc/udev/rules.d/51-android.rules
  2. Added this line

    SUBSYSTEM=="usb",ATTRS{idVendor}=="05c6",ATTRS{idProduct}=="9018",MODE="0666"

  3. sudo etc/init.d/udev restart

Note : Removed space between "," and restarted .

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.