转Android ADB命令大全

别裁伪体亲风雅,转益多师是汝师。这篇文章主要讲述转Android ADB命令大全相关的知识,希望能为你提供帮助。
ADB很强大,记住一些ADB命令有助于提高工作效率。

  1. 获取序列号:
    adb  get-serialno

  2. 查看连接计算机的设备:
    adb devices

  3. 重启机器:
    adb reboot

  4. 重启到bootloader,即刷机模式:
    adb reboot bootloader

  5. 重启到recovery,即恢复模式:
    adb reboot recovery

  6. 查看log:
    adb logcat

  7. 终止adb服务进程:
    adb  kill-server

  8. 重启adb服务进程:
    adb  start-server

  9. 获取机器MAC地址:
    adb shell cat /sys/class/net/wlan0/address

  10. 获取CPU序列号:
    adb shell cat /proc/cpuinfo

  11. 安装APK:
    adb install  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> apkfile> //比如:adb install baidu.apk

  12. 保留数据和缓存文件,重新安装apk:
    adb install -r  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> apkfile> //比如:adb install -r baidu.apk

  13. 安装apk到sd卡:
    adb install -s  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> apkfile> // 比如:adb install -s baidu.apk

  14. 卸载APK:
    adb uninstall  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> package> //比如:adb uninstall com.baidu.search

  15. 卸载app但保留数据和缓存文件:
    adb uninstall -k  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> package> //比如:adb uninstall -k com.baidu.search

  16. 启动应用:
    adb shell am start -n  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> package_name> /.< < span style="padding: 0px; margin: 0px; line-height: 21px; "> activity_class_name>

  17. 查看设备cpu和内存占用情况:
    adb shell top

  18. 查看占用内存前6的app:
    adb shell top -m 6

  19. 刷新一次内存信息,然后返回:
    adb shell top -n 1

  20. 查询各进程内存使用情况:
    adb shell procrank

  21. 杀死一个进程:
    adb  shell  kill  [pid]

  22. 查看进程列表:
    adb shell ps

  23. 查看指定进程状态:
    adb  shell  ps  -x  [PID]

  24. 查看后台services信息:
    adb shell service  list

  25. 查看当前内存占用:
    adb shell cat /proc/meminfo

  26. 查看IO内存分区:
    adb shell cat /proc/iomem

  27. 将system分区重新挂载为可读写分区:
    adb remount

  28. 从本地复制文件到设备:
    adb push  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> local>   < < span style="padding: 0px; margin: 0px; line-height: 21px; "> remote>

  29. 从设备复制文件到本地:
    adb pull  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> remote>   < < span style="padding: 0px; margin: 0px; line-height: 21px; "> local>

  30. 列出目录下的文件和文件夹,等同于dos中的dir命令:
    adb shell ls

  31. 进入文件夹,等同于dos中的cd 命令:
    adb shell cd  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> folder>

  32. 重命名文件:
    adb shell  rename path/oldfilename path/newfilename

  33. 删除system/avi.apk:
    adb shell rm /system/avi.apk

  34. 删除文件夹及其下面所有文件:
    adb shell rm -r  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> folder>

  35. 移动文件:
    adb shell mv path/file newpath/file

  36. 设置文件权限:
    adb shell  chmod  777  /system/fonts/DroidSansFallback.ttf

  37. 新建文件夹:
    adb shell  mkdir  path/foldelname

  38. 查看文件内容:
    adb shell cat  < < span style="padding: 0px; margin: 0px; line-height: 21px; "> file>

  39. 查看wifi密码:
    adb shell cat /data/misc/wifi/*.conf

  40. 清除log缓存:
    adb logcat -c

  41. 查看bug报告:
    adb bugreport

  42. 获取设备名称:
    adb shell cat /system/build.prop

  43. 查看ADB帮助:
    adb help

  44. 【转Android ADB命令大全】跑monkey:
    adb shell monkey -v -p your.package.name  500


    推荐阅读