first you try
$ ps
the output will be like that.....
PID TTY TIME CMD
3422 pts/1 00:00:00 bash
3689 pts/1 00:00:00 ps
ya, ya i know this is not enough info for you....to know more about all running process you have to do a little more...try in terminal
To see all running process type
$ ps -A |more
to see even more info about all running process, type
$ ps -eF
OR
If you want to see all running process for a specific user in extra mode, then type
$ ps -A U <user_name_here> [you can also type root, to see root user process]
If you want to see it in tree view then type in terminal,
$ pstree
To print a process tree in terminal, type
$ ps -ejF
$ ps -axjf
To see running process in dynamic real-time of a running system type
$ top
If you want to see it in tree view then type in terminal,
$ pstree
To print a process tree in terminal, type
$ ps -ejF
$ ps -axjf
To see running process in dynamic real-time of a running system type
$ top
to quit this process press q
Hope this is quite enogh for now, if you want to know more about this, then man and --help is always for you..!
No comments:
Post a Comment