| adb shell top |
持续监视进程信息 |
| adb shell ps -ef |
grep "camera" |
| adb shell getenforce |
查看selinux状态 |
| adb shell setenforce 0 |
关闭selinux |
| adb shell ps -Z |
查看进程上下问题 |
| adb shell ls -lZ |
查看文件上下文 |
| adb shell getprop -Z |
查看属性上下问题 |
|
|
| adb shell pm list package -f techinfo |
查看包名 |
| adb shell pm list package |
列出手机所有包名 |
| adb shell dumpsys activity |
findstr ResumedActivity |
| adb shell dumpsys activity |
findstr camera |
| adb shell am monitor |
查看包名:先输入命令、再打开应用 |
| adb shell logcat |
grep -i cmp |
| adb shell am start -n com.android.camera2/com.android.camera.CameraLauncher |
启动包名:{packageName}/. |
| adb shell am force-stop com.android.camera2 |
停止包名 |
| adb shell pm -p com.android.camera2 |
删除包名 |
| adb shell am startservice |
启动服务 |
| adb shell am stopservice |
停止服务 |
| adb shell am start -a android.intent.action.VIEW -d http://www.12306.cn |
打开12306网站 |
| adb shell am start -a android.intent.action.CALL -d tel:10086 |
拨打10086 |
| adb shell pm install xxx.apk |
安装apk |
| adb shell pm uninstall xxx.apk |
卸载apk |