Skip to content Skip to sidebar Skip to footer

Can't Show Android Device In Ubuntu 13.04

I have a Android tablet device that can't be showed by android devices on my laptop(T61), but it worked fine on DELL PC with the same OS: Ubuntu 13.04. I've update the adb to the

Solution 1:

I added the vender ID to ~/.android/adb_usb.ini and finally found the device.

Steps:

First: $lsusb

example result: Bus 001 Device 025: ID 18d1:0003 Google Inc.

The 18d1 is the vender ID, add it to ~/.android/adb_usb.ini by

Second: echo 0x18d1 >> ~/.android/adb_usb.ini

Third:

$sudo adb kill-server 
$sudo adb start-server
$adb devices

Post a Comment for "Can't Show Android Device In Ubuntu 13.04"