Posted on Leave a comment

Getting G2 recognized by adb in debian squeeze

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

Minor Path issue that was fixed with this added to .bashrc:

export PATH=$PATH{}:~/development/adt-bundle-linux-x86/sdk/platform-tools

edit /lib/udev/rules.d/91-permissions.rules change:

# usbfs-like devices

SUBSYSTEM==”usb”, ENV{DEVTYPE}==”usb_device”, \

MODE=”0664″

 

# usbfs-like devices

SUBSYSTEM==”usb”, ENV{DEVTYPE}==”usb_device”, \

MODE=”0666″

 add /etc/udev/rules.d/99-android.rules
SUBSYSTEM==”usb”, ENV{DEVTYPE}==”usb_device”, ATTRS{idVendor}==”0502″, MODE=”0666″

(0502 is for my laptop ID):

List of Vendor devices: http://developer.android.com/tools/device.html#VendorIds

of great help was this link: http://solutions.online.rs/android-development-bridge-on-debian/

Leave a Reply

Your email address will not be published. Required fields are marked *