最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

Linux下使用ADB

IT圈 admin 25浏览 0评论

2023年12月7日发(作者:艾昆纶)

Linux下Android ADB驱动安装详解

Linux下Android ADB驱动安装详解

概述

最近由于内置的合作商比较多,本人使用的Ubuntu系统好多厂商的Android手机都无法正确的识别,经过一番折腾,和查阅SDK,现把Linux下ADB驱动配置的方法和当中会遇到的相关问题的解决方法整理出来贡献给大家。

Linux下使用手机USB调试模式连接ADB进行Android程序的调试,配置驱动没有Windows来的直观。

具体步骤

首先确认手机连接上电脑,lsusb查看下设备记录。

matthew@matthew-1230-laptop:~$ lsusb

Bus 007 Device 009: ID 18d1:4e12

Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 004 Device 004: ID 093a:2510 Pixart Imaging, Inc.

Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

我这里是:

Bus 007 Device 009: ID 18d1:4e12

然后在/etc/udev/rules.d/下创建一个配置文件:

sudo vim /etc/udev/rules.d/

文件里添加如下配置参数: SUBSYSTEM=="usb", SYSFS{"High Tech Computer Corp."}=="0bb4",

MODE="0666"

保存,给配置文件设置下权限

sudo chmod a+rx /etc/udev/rules.d/

Restart

sudo /etc/init.d/udev restart

最后再重启下adb服务,就可以了(没配置环境变量的请进入Android SDK tools目录执行sudo ./adb kill-server ./adb devices)

sudo adb kill-server

sudo adb devices

补充

SYSFS参数:

SYSFS{"idVendor"}="xxx"

针对Linux ADB驱动配置文件里的SYSFS参数是指设备厂商。当初因为是HTC帮Google做的手机,所以官网一开始的用例上写的是”High Tech Computer Corp.”。但现在Moto, 索爱, 三星等一批手机厂商的加入,Android生产厂商已不只HTC一家。而且且如果设备型号不是0bb4那该怎么办呢?

读sdk帮助文档的时候,发现sdk已经提供了说明:

(详见:docs/guide/developing/)

If you‟re developing on Ubuntu Linux, you need to add a rules file that contains a USB

configuration for each type of device you want to use for development. Each device

manufacturer uses a different vendor ID. The example rules files below show how to add

an entry for a single vendor ID (the HTC vendor ID). In order to support more devices, you

will need additional lines of the same format that provide a different value for the

SYSFS{idVendor} property. For other IDs, see the table of USB Vendor IDs, below.

1. Log in as root and create this file: /etc/udev/rules.d/.

For Gusty/Hardy, edit the file to read: [注:ubuntu 7.10及以后版本]

SUBSYSTEM==”usb”, SYSFS{idVendor}==”0bb4″, MODE=”0666″

For Dapper, edit the file to read: [注:ubuntu 6.06及以前版本]

SUBSYSTEM==”usb_device”, SYSFS{idVendor}==”0bb4″, MODE=”0666″

2. Now execute:

chmod a+r /etc/udev/rules.d/

只要按照说明把创建的文件中的0bb4修改为相应的USB供应商ID信息即可。 比如我的手机是motorola,idVender是22b8

那么这一行就是

SUBSYSTEM=="usb", SYSFS{idVendor}=="22b8", MODE="0666"

不过,你可以写多行,以使用各种设备。比如我就写了所有的,如下:

#Acer 0502

SUBSYSTEM=="usb", SYSFS{idVendor}=="0502", MODE="0666"

#Dell 413c

SUBSYSTEM=="usb", SYSFS{idVendor}=="413c",

#Foxconn 0489

SUBSYSTEM=="usb", SYSFS{idVendor}=="0489",

#Garmin-Asus 091E

SUBSYSTEM=="usb", SYSFS{idVendor}=="091e",

#HTC 0bb4

SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4",

#Huawei 12d1

SUBSYSTEM=="usb", SYSFS{idVendor}=="12d1",

#Kyocera 0482

SUBSYSTEM=="usb", SYSFS{idVendor}=="0482",

#LG 1004

SUBSYSTEM=="usb", SYSFS{idVendor}=="1004",

#Motorola 22b8

SUBSYSTEM=="usb", SYSFS{idVendor}=="22b8",

#Nvidia 0955

SUBSYSTEM=="usb", SYSFS{idVendor}=="0955",

#Pantech 10A9

SUBSYSTEM=="usb", SYSFS{idVendor}=="10A9",

#Samsung 04e8

SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8",

#Sharp 04dd

SUBSYSTEM=="usb", SYSFS{idVendor}=="04dd",

#Sony Ericsson 0fce

SUBSYSTEM=="usb", SYSFS{idVendor}=="0fce",

#ZTE 19D2

SUBSYSTEM=="usb", SYSFS{idVendor}=="19D2",

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666" 但是这上面的ID,并不能包括所有,我手上就有一台设备的USB ID就不在上述之列。

解决办法是你可以使用lsusb命令查看你的USB ID

matthew@matthew-1230-laptop:~$ lsusb

Bus 002 Device 003: ID 413c:2003 Dell Computer Corp. Keyboard

Bus 002 Device 002: ID 0461:4d22 Primax Electronics, Ltd

Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 001 Device 010: ID 18a1:0002

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

找到上面的ID为18a1,在文件中添加设备就可以了。

SUBSYSTEM=="usb", SYSFS{idVendor}=="18a1", MODE="0666"

修改/etc/udev/rules.d/不需要重启Linux机器,重新插拔一下设备就可以了。再次运行adb devices就可以看到你的设备已经连接

linux下adb工具的安装

第一步:启动开发板,进入android系统后,在linux终端输入lsusb命令查询USB总线上的设备,比如我这里查询结果如下:

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 001 Device 002: ID 15a2:0c02 Freescale Semiconductor,

Inc.

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

可以看到,15a2即开发板的设备ID号。

第二步:下载最新的android SDK并解压到某目录,下载地址:

/sdk/

截至目前最新的SDK为android-sdk_r12-linux_

解压出来的名称为android-sdk-linux_x86

进入下面目录:

cd android-sdk-linux_x86/tools/

./android update adb

第三步:修改~/.android/adb_文件,注意,这时为root模式下的路径,在普通权限下,

是不存在该目录的。

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.

# USE 'android update adb' TO GENERATE. # 1 USB VENDOR ID PER LINE.

0x15a2

第四步:创建一个新的udev规则的文件,在/etc/udev/rules.d路径下,新建名为的文件,编辑内容如下:

SUBSYSTEM=="usb", SYSFS{idVendor}=="15a2", MODE="0666"

第五步:在/etc/中声明adb的路径:

export

PATH=/opt/program/mx53_smd/out/host/linux-x86/bin然后

source /etc/

第六步:重启ADB

adb kill-server

adb start-server

第七步:使用adb devices命令查找设备:

root@lqm:/opt/program/mx53_smd/out/host/linux-x86/bin# adb

devices

List of devices attached

ABCDEF device

root@lqm:/opt/program/mx53_smd/out/host/linux-x86/bin#

PATH ADB详细命令集

ADB全称Android Debug Bridge, 是android sdk里的一个工具, 用这个工具可以直接操作管理android模拟器或者真实的andriod设备(如G1手机).

它的主要功能有:

* 运行设备的shell(命令行)

* 管理模拟器或设备的端口映射

* 计算机和设备之间上传/下载文件

* 将本地apk软件安装至模拟器或android设备

ADB是一个 客户端-服务器端 程序, 其中客户端是你用来操作的电脑, 服务器端是android设备..

先说安装方法, 电脑上需要安装客户端. 客户端包含在sdk里. 设备上不需要安装, 只需要在手机上打开选项settings-applications-development-USB debugging.

对于Mac和Linux用户, 下载好的sdk解压后, 可以放~或者任意目录. 然后修改~/.bash_profile文件, 设置运行环境指向sdk的tools目录.

具体是打开~/.bash_profile文件(如果没有此文件也可以自行添加), 在里面加入一行:

export PATH=${PATH}:<你的sdk目录>/tools

然后就可以使用adb命令了.

嫌安装麻烦的同学其实也可以省去上面安装步骤, 直接输入完整路径来使用命令。

对于windows xp用户, 需要先安装usb驱动 android_usb_, 然后如果你只打算使用adb而不想下载整个sdk的话, 可以下载这个单独的adb工具包 adb_ 下载后解压, 把里面 和 两个文件放到系统盘的 windows/system32

文件夹里就可以了

现在说下ADB常用的几个命令

查看设备

* adb devices

这个命令是查看当前连接的设备, 连接到计算机的android设备或者模拟器将会列出显示

安装软件

* adb install

这个命令将指定的apk文件安装到设备上. 卸载软件

* adb uninstall <软件名>

* adb uninstall -k <软件名>

如果加 -k 参数,为卸载软件但是保留配置和缓存文件.

登录设备shell

* adb shell

* adb shell

这个命令将登录设备的shell.

后面加将是直接运行设备命令, 相当于执行远程命令

从电脑上发送文件到设备

* adb push <本地路径> <远程路径>

用push命令可以把本机电脑上的文件或者文件夹复制到设备(手机)

从设备上下载文件到电脑

* adb pull <远程路径> <本地路径>

用pull命令可以把设备(手机)上的文件或者文件夹复制到本机电脑

显示帮助信息

* adb help

这个命令将显示帮助信息

这里还有一个英文版的:

在DOS下输入以下命令基本可以完成刷机任务,一些常用命令解释如下:

adb devices - 列出连接到电脑的ADB设备(也就是手机),一般显示出手机P/N码.如果没有显示出来则手机与电脑没有连接上.

adb install <> – 安装手机软件到手机中,如:adb install . adb remount – 重新打开手机写模式(刷机模式).

adb push - 传送文件到手机中,如:adb push

/sdcard/,将本地目录中的文件传送手机的SD卡中并取同样的文件名.

adb pull - 传送手机的文件到本地目录(和上命令相反).

adb shell - 让手机执行命令,就是手机执行的命令.如: adb

shell flash_image recovery /sd-card/,执行将写入到recovery 区中.

我们刷recovery时一般按下顺序执行:

adb shell mount -a

adb push /system/

adb push /sdcard/

adb shell flash_image recovery /sdcard/ reboot

其它的自己灵活运用了.

ADB命令详解:

Android Debug Bridge version 1.0.20

-d - directs command to the only connected USB device returns an error if more than

one USB device is present.

-e - directs command to the only running s an error if more than one

emulator is running.

-s – directs command to the USB device or emulator withthe

given serial number

-p – simple product name like „sooner‟, or a relative/absolute

path to a product out directory like „out/target/product/sooner‟.

If -p is not specified, the ANDROID_PRODUCT_OUT environment variable is used,

which must be an absolute path.

devices – list all connected devices

device commands:

adb push – copy file/dir to device

adb pull – copy file/dir from device

adb sync [ ] – copy host->device only if changed (see „adb help all‟) adb shell – run remote shell interactively

adb shell – run remote shell command

adb emu – run emulator console command

adb logcat [ ] – View device log

adb forward – forward socket connections

forward specs are one of:

tcp:

localabstract:

localreserved:

localfilesystem:

dev:

jdwp: (remote only)

adb jdwp – list PIDs of processes hosting a JDWP transport

adb install [-l] [-r] – push this package file to the device and install it

(„-l‟ means forward-lock the app)

(„-r‟ means reinstall the app, keeping its data)

adb uninstall [-k] – remove this app package from the device

(„-k‟ means keep the data and cache directories)

adb bugreport – return all information from the device that should be included

in a bug report.

adb help – show this help message

adb version – show version num

DATAOPTS:

(no option) – don‟t touch the data partition

-w – wipe the data partition

-d – flash the data partition

scripting:

adb wait-for-device – block until device is online

adb start-server – ensure that there is a server running

adb kill-server – kill the server if it is running

adb get-state – prints: offline | bootloader | device

adb get-serialno – prints:

adb status-window – continuously print device status for a specified device adb remount – remounts the /system partition on the device re

ad-write

adb root – restarts adb with root permissions

networking:

adb ppp [parameters] – Run PPP over USB.

Note: you should not automatically start a PDP connection.

refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1

[parameters] – Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ ]

can be interpreted in several ways:

- If is not specified, both /system and /data partitions will be updated.

- If it is “system” or “data”, only the corresponding partition is updated. 升级SDK Manager后无法使用adb命令

前一段时间升级SDK Manager并装了几个低版本的API包后,再次在cmd中使用"adb"命令会出现如下错误

“adb不是内部或外部命令,也不是可运行的程序或批量文件。”

想了半天自己根本没动目录里的任何东西,网上查资料说是要找android-sdk/tool下的

打开android-sdk/tool发现里面没有程序,但是有一个文档名字是“adb_has_”

打开以后里面写到

“The adb tool has moved to platform-tools/

If you don't see this directory in your SDK,

launch the SDK and AVD Manager (execute the android tool)

and install "Android SDK Platform-tools"

Please also update your PATH environment variable to

nclude the platform-tools/ directory, so you can

execute adb from any location.

” 迁移到了platform-tools/目录下了,我们只需要在环境变量Path下添加这个目录就可以了。

2023年12月7日发(作者:艾昆纶)

Linux下Android ADB驱动安装详解

Linux下Android ADB驱动安装详解

概述

最近由于内置的合作商比较多,本人使用的Ubuntu系统好多厂商的Android手机都无法正确的识别,经过一番折腾,和查阅SDK,现把Linux下ADB驱动配置的方法和当中会遇到的相关问题的解决方法整理出来贡献给大家。

Linux下使用手机USB调试模式连接ADB进行Android程序的调试,配置驱动没有Windows来的直观。

具体步骤

首先确认手机连接上电脑,lsusb查看下设备记录。

matthew@matthew-1230-laptop:~$ lsusb

Bus 007 Device 009: ID 18d1:4e12

Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 004 Device 004: ID 093a:2510 Pixart Imaging, Inc.

Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

我这里是:

Bus 007 Device 009: ID 18d1:4e12

然后在/etc/udev/rules.d/下创建一个配置文件:

sudo vim /etc/udev/rules.d/

文件里添加如下配置参数: SUBSYSTEM=="usb", SYSFS{"High Tech Computer Corp."}=="0bb4",

MODE="0666"

保存,给配置文件设置下权限

sudo chmod a+rx /etc/udev/rules.d/

Restart

sudo /etc/init.d/udev restart

最后再重启下adb服务,就可以了(没配置环境变量的请进入Android SDK tools目录执行sudo ./adb kill-server ./adb devices)

sudo adb kill-server

sudo adb devices

补充

SYSFS参数:

SYSFS{"idVendor"}="xxx"

针对Linux ADB驱动配置文件里的SYSFS参数是指设备厂商。当初因为是HTC帮Google做的手机,所以官网一开始的用例上写的是”High Tech Computer Corp.”。但现在Moto, 索爱, 三星等一批手机厂商的加入,Android生产厂商已不只HTC一家。而且且如果设备型号不是0bb4那该怎么办呢?

读sdk帮助文档的时候,发现sdk已经提供了说明:

(详见:docs/guide/developing/)

If you‟re developing on Ubuntu Linux, you need to add a rules file that contains a USB

configuration for each type of device you want to use for development. Each device

manufacturer uses a different vendor ID. The example rules files below show how to add

an entry for a single vendor ID (the HTC vendor ID). In order to support more devices, you

will need additional lines of the same format that provide a different value for the

SYSFS{idVendor} property. For other IDs, see the table of USB Vendor IDs, below.

1. Log in as root and create this file: /etc/udev/rules.d/.

For Gusty/Hardy, edit the file to read: [注:ubuntu 7.10及以后版本]

SUBSYSTEM==”usb”, SYSFS{idVendor}==”0bb4″, MODE=”0666″

For Dapper, edit the file to read: [注:ubuntu 6.06及以前版本]

SUBSYSTEM==”usb_device”, SYSFS{idVendor}==”0bb4″, MODE=”0666″

2. Now execute:

chmod a+r /etc/udev/rules.d/

只要按照说明把创建的文件中的0bb4修改为相应的USB供应商ID信息即可。 比如我的手机是motorola,idVender是22b8

那么这一行就是

SUBSYSTEM=="usb", SYSFS{idVendor}=="22b8", MODE="0666"

不过,你可以写多行,以使用各种设备。比如我就写了所有的,如下:

#Acer 0502

SUBSYSTEM=="usb", SYSFS{idVendor}=="0502", MODE="0666"

#Dell 413c

SUBSYSTEM=="usb", SYSFS{idVendor}=="413c",

#Foxconn 0489

SUBSYSTEM=="usb", SYSFS{idVendor}=="0489",

#Garmin-Asus 091E

SUBSYSTEM=="usb", SYSFS{idVendor}=="091e",

#HTC 0bb4

SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4",

#Huawei 12d1

SUBSYSTEM=="usb", SYSFS{idVendor}=="12d1",

#Kyocera 0482

SUBSYSTEM=="usb", SYSFS{idVendor}=="0482",

#LG 1004

SUBSYSTEM=="usb", SYSFS{idVendor}=="1004",

#Motorola 22b8

SUBSYSTEM=="usb", SYSFS{idVendor}=="22b8",

#Nvidia 0955

SUBSYSTEM=="usb", SYSFS{idVendor}=="0955",

#Pantech 10A9

SUBSYSTEM=="usb", SYSFS{idVendor}=="10A9",

#Samsung 04e8

SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8",

#Sharp 04dd

SUBSYSTEM=="usb", SYSFS{idVendor}=="04dd",

#Sony Ericsson 0fce

SUBSYSTEM=="usb", SYSFS{idVendor}=="0fce",

#ZTE 19D2

SUBSYSTEM=="usb", SYSFS{idVendor}=="19D2",

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666"

MODE="0666" 但是这上面的ID,并不能包括所有,我手上就有一台设备的USB ID就不在上述之列。

解决办法是你可以使用lsusb命令查看你的USB ID

matthew@matthew-1230-laptop:~$ lsusb

Bus 002 Device 003: ID 413c:2003 Dell Computer Corp. Keyboard

Bus 002 Device 002: ID 0461:4d22 Primax Electronics, Ltd

Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 001 Device 010: ID 18a1:0002

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

找到上面的ID为18a1,在文件中添加设备就可以了。

SUBSYSTEM=="usb", SYSFS{idVendor}=="18a1", MODE="0666"

修改/etc/udev/rules.d/不需要重启Linux机器,重新插拔一下设备就可以了。再次运行adb devices就可以看到你的设备已经连接

linux下adb工具的安装

第一步:启动开发板,进入android系统后,在linux终端输入lsusb命令查询USB总线上的设备,比如我这里查询结果如下:

Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root

hub

Bus 001 Device 002: ID 15a2:0c02 Freescale Semiconductor,

Inc.

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root

hub

可以看到,15a2即开发板的设备ID号。

第二步:下载最新的android SDK并解压到某目录,下载地址:

/sdk/

截至目前最新的SDK为android-sdk_r12-linux_

解压出来的名称为android-sdk-linux_x86

进入下面目录:

cd android-sdk-linux_x86/tools/

./android update adb

第三步:修改~/.android/adb_文件,注意,这时为root模式下的路径,在普通权限下,

是不存在该目录的。

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.

# USE 'android update adb' TO GENERATE. # 1 USB VENDOR ID PER LINE.

0x15a2

第四步:创建一个新的udev规则的文件,在/etc/udev/rules.d路径下,新建名为的文件,编辑内容如下:

SUBSYSTEM=="usb", SYSFS{idVendor}=="15a2", MODE="0666"

第五步:在/etc/中声明adb的路径:

export

PATH=/opt/program/mx53_smd/out/host/linux-x86/bin然后

source /etc/

第六步:重启ADB

adb kill-server

adb start-server

第七步:使用adb devices命令查找设备:

root@lqm:/opt/program/mx53_smd/out/host/linux-x86/bin# adb

devices

List of devices attached

ABCDEF device

root@lqm:/opt/program/mx53_smd/out/host/linux-x86/bin#

PATH ADB详细命令集

ADB全称Android Debug Bridge, 是android sdk里的一个工具, 用这个工具可以直接操作管理android模拟器或者真实的andriod设备(如G1手机).

它的主要功能有:

* 运行设备的shell(命令行)

* 管理模拟器或设备的端口映射

* 计算机和设备之间上传/下载文件

* 将本地apk软件安装至模拟器或android设备

ADB是一个 客户端-服务器端 程序, 其中客户端是你用来操作的电脑, 服务器端是android设备..

先说安装方法, 电脑上需要安装客户端. 客户端包含在sdk里. 设备上不需要安装, 只需要在手机上打开选项settings-applications-development-USB debugging.

对于Mac和Linux用户, 下载好的sdk解压后, 可以放~或者任意目录. 然后修改~/.bash_profile文件, 设置运行环境指向sdk的tools目录.

具体是打开~/.bash_profile文件(如果没有此文件也可以自行添加), 在里面加入一行:

export PATH=${PATH}:<你的sdk目录>/tools

然后就可以使用adb命令了.

嫌安装麻烦的同学其实也可以省去上面安装步骤, 直接输入完整路径来使用命令。

对于windows xp用户, 需要先安装usb驱动 android_usb_, 然后如果你只打算使用adb而不想下载整个sdk的话, 可以下载这个单独的adb工具包 adb_ 下载后解压, 把里面 和 两个文件放到系统盘的 windows/system32

文件夹里就可以了

现在说下ADB常用的几个命令

查看设备

* adb devices

这个命令是查看当前连接的设备, 连接到计算机的android设备或者模拟器将会列出显示

安装软件

* adb install

这个命令将指定的apk文件安装到设备上. 卸载软件

* adb uninstall <软件名>

* adb uninstall -k <软件名>

如果加 -k 参数,为卸载软件但是保留配置和缓存文件.

登录设备shell

* adb shell

* adb shell

这个命令将登录设备的shell.

后面加将是直接运行设备命令, 相当于执行远程命令

从电脑上发送文件到设备

* adb push <本地路径> <远程路径>

用push命令可以把本机电脑上的文件或者文件夹复制到设备(手机)

从设备上下载文件到电脑

* adb pull <远程路径> <本地路径>

用pull命令可以把设备(手机)上的文件或者文件夹复制到本机电脑

显示帮助信息

* adb help

这个命令将显示帮助信息

这里还有一个英文版的:

在DOS下输入以下命令基本可以完成刷机任务,一些常用命令解释如下:

adb devices - 列出连接到电脑的ADB设备(也就是手机),一般显示出手机P/N码.如果没有显示出来则手机与电脑没有连接上.

adb install <> – 安装手机软件到手机中,如:adb install . adb remount – 重新打开手机写模式(刷机模式).

adb push - 传送文件到手机中,如:adb push

/sdcard/,将本地目录中的文件传送手机的SD卡中并取同样的文件名.

adb pull - 传送手机的文件到本地目录(和上命令相反).

adb shell - 让手机执行命令,就是手机执行的命令.如: adb

shell flash_image recovery /sd-card/,执行将写入到recovery 区中.

我们刷recovery时一般按下顺序执行:

adb shell mount -a

adb push /system/

adb push /sdcard/

adb shell flash_image recovery /sdcard/ reboot

其它的自己灵活运用了.

ADB命令详解:

Android Debug Bridge version 1.0.20

-d - directs command to the only connected USB device returns an error if more than

one USB device is present.

-e - directs command to the only running s an error if more than one

emulator is running.

-s – directs command to the USB device or emulator withthe

given serial number

-p – simple product name like „sooner‟, or a relative/absolute

path to a product out directory like „out/target/product/sooner‟.

If -p is not specified, the ANDROID_PRODUCT_OUT environment variable is used,

which must be an absolute path.

devices – list all connected devices

device commands:

adb push – copy file/dir to device

adb pull – copy file/dir from device

adb sync [ ] – copy host->device only if changed (see „adb help all‟) adb shell – run remote shell interactively

adb shell – run remote shell command

adb emu – run emulator console command

adb logcat [ ] – View device log

adb forward – forward socket connections

forward specs are one of:

tcp:

localabstract:

localreserved:

localfilesystem:

dev:

jdwp: (remote only)

adb jdwp – list PIDs of processes hosting a JDWP transport

adb install [-l] [-r] – push this package file to the device and install it

(„-l‟ means forward-lock the app)

(„-r‟ means reinstall the app, keeping its data)

adb uninstall [-k] – remove this app package from the device

(„-k‟ means keep the data and cache directories)

adb bugreport – return all information from the device that should be included

in a bug report.

adb help – show this help message

adb version – show version num

DATAOPTS:

(no option) – don‟t touch the data partition

-w – wipe the data partition

-d – flash the data partition

scripting:

adb wait-for-device – block until device is online

adb start-server – ensure that there is a server running

adb kill-server – kill the server if it is running

adb get-state – prints: offline | bootloader | device

adb get-serialno – prints:

adb status-window – continuously print device status for a specified device adb remount – remounts the /system partition on the device re

ad-write

adb root – restarts adb with root permissions

networking:

adb ppp [parameters] – Run PPP over USB.

Note: you should not automatically start a PDP connection.

refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1

[parameters] – Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ ]

can be interpreted in several ways:

- If is not specified, both /system and /data partitions will be updated.

- If it is “system” or “data”, only the corresponding partition is updated. 升级SDK Manager后无法使用adb命令

前一段时间升级SDK Manager并装了几个低版本的API包后,再次在cmd中使用"adb"命令会出现如下错误

“adb不是内部或外部命令,也不是可运行的程序或批量文件。”

想了半天自己根本没动目录里的任何东西,网上查资料说是要找android-sdk/tool下的

打开android-sdk/tool发现里面没有程序,但是有一个文档名字是“adb_has_”

打开以后里面写到

“The adb tool has moved to platform-tools/

If you don't see this directory in your SDK,

launch the SDK and AVD Manager (execute the android tool)

and install "Android SDK Platform-tools"

Please also update your PATH environment variable to

nclude the platform-tools/ directory, so you can

execute adb from any location.

” 迁移到了platform-tools/目录下了,我们只需要在环境变量Path下添加这个目录就可以了。

发布评论

评论列表 (0)

  1. 暂无评论