Adb shell ps

This command is used to show the list of all processes in android

adb shell ps -A

Show all processes that aren't session leaders

adb shell ps -A

adb shell ps -p PID

Show a process with the particular PID

adb shell ps -p 1256

adb shell ps -t

Show threads

adb shell ps -t

adb shell ps -d

Show all processes that aren't session leaders

adb shell ps -d

adb shell ps

adb shell ps

how to image


Frequently Asked Questions


What does adb shell ps command do?

It is a command that is used to list thr running processes in Android.

What types of processes does adb shell ps command list?

It lists all the running android processes while showing the Process ID(PID), Parent Process ID(PPID), Virtual Size, Process Name and more for each process.

Why is the adb shell ps command not listing all the processes?

The command adb shell ps itself can list all the processes if you are running on a version lower than Android 8.0. On a higher or equivalent version, adb shell ps -A is required to list all processes.

rating-img
Rate this tool
NaN/5   0 votes