adb.exe是什么进程 adb.exe命令详解

来源:攒机帮 2022-07-11 06:50 阅读:142

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_windows.zip, 随后假如你只准备应用adb而不愿下载全部sdk得话, 可以下载这一独立的adb工具包 adb_win.zip 下载后缓解压力, 把里边 adb.exe 和 AdbWinApi.dll 2个文件放进系统盘的 windows/system32 文件夹里就可以了

如今说下ADB常见的好多个命令
查看设备

* adb devices

这一命令是查看现阶段连接的设备, 连接到计算机的android设备或是模拟器可能列举显示
安装软件

* adb install <apk文件途径>

这一命令将特定的apk文件安装到设备上.

卸载软件

* adb uninstall <软件名>
* adb uninstall -k <软件名>

假如加 -k 主要参数,为卸载软件可是保存配备和缓存文件.
登录设备shell

* adb shell
* adb shell <command命令>

这一命令将登录设备的shell.
后边加<command命令>将是立即运行设备命令, 等同于实行远程命令
从电脑发送文件到设备

* adb push <当地途径> <远程路径>

用push命令可以把远程服务器电脑的文件或是文件夹复制到设备(手机)
从设备上下载文件到电脑上

* adb pull <远程途径> <当地途径>

用pull命令可以把设备(手机)上的文件或是文件夹复制到远程服务器电脑上
显示协助信息

* adb help

这一命令将显示协助信息

这儿还有一个英文版的:

在DOS下输入下列命令基本可以进行手机刷机任务,一些常见命令表述如下所示:

adb devices - 列举连接到电脑上的ADB设备(也就是手机),一般显示出手机P/N码.要是没有显示出去则手机与电脑没有连接上.
adb install <packagename.apk> – 安装手机软件到手机中,如:adb install qq2009.apk.
adb remount – 重新开启手机写模式(手机刷机模式).
adb push <localfile> <location on your phone> - 传输文件到手机中,如:adb push recovery.img /sdcard/recovery.img,将当地文件目录中的recovery.img文件传输手机的SD卡中并取一样的文件名.
adb pull <location on your phone> <localfile> - 传输手机的文件到当地文件目录(和上命令反过来).

adb shell <command> - 让手机实行命令,<command>便是手机实行的命令.如: adb shell flash_image recovery /sd-card/recovery-RAv1.0G.img,执行将recovery-RAv1.0G.img载入到recovery 区中.

大家刷recovery时一般按住次序实行:

adb shell mount -a

adb push recovery-RAv1.0G.img /system/recovery.img

adb push recovery-RAv1.0G.img /sdcard/recovery-RAv1.0G.img

adb shell flash_image recovery /sdcard/recovery-RAv1.0G.img reboot

其他的自身熟练掌握了.

ADB命令详细说明:
Android Debug Bridge version 1.0.20
-d - directs command to the only connected USB devicereturns an error if more than one USB device ispresent.
-e  - directs command to the only running emulator.returns an error if more than one emulator is running.
-s <serial number>            – directs command to the USB device or emulator withthe given serial number
-p <product name or path>     – simple product name like ’sooner’, ora relative/absolute path to a productout directory like ‘out/target/product/sooner’.
If -p is not specified, the ANDROID_PRODUCT_OUTenvironment variable is used, which mustbe an absolute path.
devices – list all connected devices
device commands:
adb push <local> <remote>    – copy file/dir to device
adb pull <remote> <local>    – copy file/dir from device
adb sync [ <directory> ]     – copy host->device only if changed(see ‘adb help all’)
adb shell                    – run remote shell interactively
adb shell <command>          – run remote shell command
adb emu <command>            – run emulator console command
adb logcat [ <filter-spec> ] – View device log
adb forward <local> <remote> – forward socket connections
forward specs are one of:

tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)

adb jdwp – list PIDs of processes hosting a JDWP transport
adb install [-l] [-r] <file> – 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] <package> – remove this app package from the device
(‘-k’ means keep the data and cache directories)
adb bugreport                – return all information from the devicethat 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: <serial-number>
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 <tty> [parameters]   – Run PPP over USB.
Note: you should not automatically start a PDP connection.
<tty> 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 [ <directory> ]
<localdir> can be interpreted in several ways:
- If <directory> is not specified, both /system and /data partitions will be updated.
- If it is “system” or “data”, only the corresponding partitionis updated