Question

Helllo I'm try to test the applications android in the mobile LG Optimus L3 E400f, but not works. This is the things that I do to try to solve the mistake.

1.identify the device ID then I type lsusb and this show :

Bus 001 Device 003: ID 1004:61fc LG Electronics, Inc. 

2.Edit the file /etc/udev/rules.d/51-android.rules and add the next things:

SUBSYSTEM=="usb", SYSFS{idVendor}=="1004", MODE="0666"

3.Restar my computer

4.run the adb and find the devices, this is the moment when I give the mistake(again):

 ./adb devices

This show:

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

(Always my mobile has been on development mode).

How to fix my trouble?.

Thanks.

Was it helpful?

Solution

Try using ATTR{idVendor instead of SYSFS

Like so:

SUBSYSTEM=="usb", ATTR{idVendor}=="1004", MODE="0666"

and if that doesn't work put GROUP="plugdev" at the end of the line.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top