Solve the android adb connect problem(Linux)

本文详细介绍了如何解决Ubuntu 12.04系统下Android设备ADB连接问题,包括安装ADB工具、配置环境变量、设置USB权限及更新ADB等步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

solve the android adb connect problem (ubuntu 12.04)
if you have not adb tools , you need download the android sdk from  http://developer.android.com/sdk/index.html.
the adb tool is in  ./*/sdk/platform-tools.
1. Open the terminal and login as "root" (sudo su)
2. Config the env for the android and adb in /root/.bashrc
   #android sdk
   export ANDROID_HOME=/android_develop/adt-bundle-linux-x86_64/sdk(change to your path)
   export PATH=$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$PATH
   then source  /root/.bashrc
3. input "lsusb" to cat the info of your android device , example:
   Bus 001 Device 029: ID 10d6:0c02 Actions Semiconductor Co., Ltd
   then :
   vim /etc/udev/rules.d/51-android.rules (if does not exist, creat it) ,add below:
   SUBSYSTEM=="usb", SYSFS{idVendor}=="10d6", MODE="0666"
   SUBSYSTEM=="usb_device", SYSFS{idVendor}=="10d6", MODE="0666"
   SUBSYSTEM=="usb", ATTR{idVendor}=="10d6", ATTR{idProduct}=="0c02", SYMLINK+="android_adb"
   at last:
   /etc/init.d/udev restart
4. android update adb
   vim /root/.android/adb_usb.ini and add the vendor id "0x10d6"
5.Then you can the android adb.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值