Bus 001 Device 006: ID 0bb4:0c02 High Tech Computer Corp.
With "ls -l /dev/bus/usb/*", I did find that the device was not world-writable:
/dev/bus/usb/001:
total 0
crw-rw-r-- 1 root root 189, 0 2009-10-31 00:59 001
crw-rw-r-- 1 root root 189, 5 2009-10-31 12:25 006
Then I created "/etc/udev/rules.d/51-android.rules" with the line:
SUBSYSTEM=="usb",ATTRS(idVendor)=="0bb4",SYMLINK+="android_adb",MODE="0666"
Then:
chmod a+x /etc/udev/rules.d/51-android.rules
sudo service udev restart
Unplug device and plug back in:
./adb devices
List of devices attached
HT845GZ51436 device
So I'm guessing it was just an upgrade gone awry...
Thanks,
Karl
On Sat, Oct 31, 2009 at 6:01 AM, Tim <tdhutt@gmail.com> wrote:
On Oct 31, 2:22 am, kostmo <kos...@gmail.com> wrote:
> Hello Ubuntu users,
> Just finished upgrading from Jaunty to Karmic, and my ADP1 doesn't
> show up in "./adb devices" anymore. I have tried the solution
> proposed here (http://groups.google.com/group/android-developers/msg/
> 7f3990c5d5367dbb) but it doesn't work for me. Phone is also missing
> from the "lsusb" list, although I find that I can actually mount the
> sdcard.
>
> Any luck out there?
Try this:
lsusb to make sure the device is shown, note the bus and device
numbers.
ls -l /dev/bus/usb/*
The file /dev/bus/usb/<bus number>/<device number> should be world-
writable. Is it?
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--
Code or be coded.
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
No comments:
Post a Comment