===== Show all running processes in Linux =====
Type the following ps command to display all running process
# ps aux | less
Where,
# ps -A
# ps -e
# ps -U root -u root -N
# ps -u vivek
The top program provides a dynamic real-time view of a running system. Type the top at command prompt:
# top
To quite press q for help press h.
pstree shows running processes as a tree. The tree is rooted at either pid or init if pid is omitted. If a user name is specified, all process trees rooted at processes owned by that user are shown.
$ pstree
Use pgrep command. pgrep looks through the currently running processes and lists the process IDs which matches the selection criteria to screen. For example display firefox process id:
$ pgrep firefox
Following command will list the process called sshd which is owned by root user.
$ pgrep -u root sshd
htop is interactive process viewer just like top, but allows to scroll the list vertically and horizontally to see all processes and their full command lines. Tasks related to processes (killing, renicing) can be done without entering their PIDs. To install htop type command:
# apt-get install htop
or
# yum install htop
Now type htop to run the command:
# htop
-- Main.FredPettis - 25 Feb 2009