Adding Vendor Id on linux for device debugging : error: no permissions

5.2k views Asked by At

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.

1

There are 1 answers

1
MGK On BEST ANSWER

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 .