ps - list processes
Syntax
Description
ps
ps gives a snapshot of the current processes.The different columns are:
PID: The process ID of the process. CMD: Command name of the process. STATE: Either SLP, ONPROC or RUN. SLP means the process is sleeping, ONPROC means it has threads on a CPU and RUN means it has runnable threads. NTHREAD: Number of threads under process USR/SYS: The first value is the total CPU time used in user mode. Then after the / is the total CPU time used in kernel. ID: The ID the process is running as.
PS (1) |