首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

ubuntu联接android

2012-08-26 
ubuntu连接android[转]http://aphyr.com/journals/show/debugging-the-droid-on-ubuntu-karmic$ adb devic

ubuntu连接android
[转]http://aphyr.com/journals/show/debugging-the-droid-on-ubuntu-karmic

$ adb devices List of devices attached ???????????? no permissions

A few things have changed since the Android docs were written. If you want to talk to your Motorola Droid via ADB in Ubuntu 9.10 Karmic, I recommend the following udev rule.
# /etc/udev/rules.d/99-android.rules SUBSYSTEM=="usb", ATTRS{idVendor}=="22b8", SYMLINK+="android_adb", MODE="0666"

Restart udev, unplug and re-plug the device, and it should show up! Make sure USB debugging is enabled on your droid.
$ sudo restart udev $ adb devices List of devices attached 0403681F17009017 device

If that doesn't work, try restarting the adb server:
$ adb kill-server $ nohup adb start-server

热点排行