android adb shell中使用到的命令

Posted pam pam

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android adb shell中使用到的命令相关的知识,希望对你有一定的参考价值。

1,Shell 模式下挂载根目录下的目录为可读可写状态,e.g /system/

 mount -o remount rw /system/

这样即可push文件到相应目录中。

2,Shell 模式下查看相应进程的PID,e.g packageName = com.android.phone

 root@android:/# ps|grep com.android.phone

可见com.android.phone进程的PID = 2466,其中命令中的grep为从结果中过滤指定字符串

 3,Shell 模式下查看被某进程PID所访问的文件,其实就是查看/proc/<PID>/fd/下的文件:e.g PID = 2466

root@android:/ # ls /proc/2466/fd -l|grep /dev/

可见被进程的PID = 2466 访问的文件位于/dev/目录下有以上,实际不只这些,方便演示只截了小图。

以上是关于android adb shell中使用到的命令的主要内容,如果未能解决你的问题,请参考以下文章

Android 中常用的 adb shell 命令

如何在android程序中执行adb shell命令

如何在android程序中执行adb shell命令

如何在android程序中执行adb shell命令

如何用adb shell 指令获得android当前的activity

Android 常用adb shell 命令(转)