# HG changeset patch # User Oleksandr Gavenko # Date 1228810094 -7200 # Node ID 7c1ebbeff69f4e48801fd43364ee5720ea2dd0c9 # Parent da5840c37b4edb9dc7401524cf6a28ad4534bd68 Added process managment. diff -r da5840c37b4e -r 7c1ebbeff69f process-managment.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/process-managment.rst Tue Dec 09 10:08:14 2008 +0200 @@ -0,0 +1,32 @@ +-*- outline -*- + +* Process list. + +** FreeBSD. + +View current user process: + + $ ps + +View all running process: + + $ ps -ax + +** Linux. + +View current user process: + + $ ps + +View all running process: + + $ ps -e + +** Solaris. + +TODO + +* Killing process. + +TODO +