

The columns hold information on the processes: There is a dashboard area at the top of the screen made up of lines of text, and a table in the lower part of the screen made up of columns. It provides a dynamic view of the processes running in your computer. To get an updating view of the processes, use the top command. You can provide a list of process IDs, separated by spaces. You are not restricted to one process ID. Use the -p (select by process ID) option to achieve this: ps -p 3403 Once you have found the process ID for the process you’re interested in, you can use it with the ps command to list the details of that process. CMD: The name of the command that launched the process.TIME: The amount of CPU processing time that the process has used.TTY: The name of the console that the user is logged in at.PSR: The processor that the process is assigned to.This is the non-swapped physical memory used by the process.

SZ: Size in RAM pages of the process image.C: The number of children the process has.

