Summary
The procedure to monitor the running process in Linux using the command line is to use the ps command.
1
This command displays the currently running processes in real-time.
2
The top command is another way to view system resource usage and the processes taking up the most resources.
3
The ps command can list all the processes running on a Linux system with the -e option, and can be piped to more to view 15 lines at a time.
4
According to
See more results on Neeva
Summaries from the best pages on the web
Summary
The procedure to monitor the running process in Linux using the command line is as follows:
Let us see some example and usage in details.
Please note that vivek@nixcraft:~$ is my shell prompt. You need to type commands after the $ prompt.
The ps command
How to check running process in Linux using command line - nixCraft
cyberciti.biz
Summary
The ps command can list all the processes running on a Linux system with the -e option.
It's normal for a system to have large number of processes running at any given time, so it's easier to sift through this list by piping the command to more. For example, to see 15 lines at a time:
The output from ps is showing
How to View Running Processes on Linux
howtoforge.com