# HG changeset patch # User Oleksandr Gavenko # Date 1228816434 -7200 # Node ID f34d3dadc008042b6d613fcd11db314e86514c85 # Parent 7c1ebbeff69f4e48801fd43364ee5720ea2dd0c9 up diff -r 7c1ebbeff69f -r f34d3dadc008 process-managment.rst --- a/process-managment.rst Tue Dec 09 10:08:14 2008 +0200 +++ b/process-managment.rst Tue Dec 09 11:53:54 2008 +0200 @@ -1,32 +1,59 @@ --*- 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 - +-*- 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 + +* Process info. + +Show user, pid, ppid, pgid, sid, jobc, state, time, command, etc. + +** Linux. + + $ ps -f + +** FreeBSD. + + $ ps -j + +or + + $ ps -l + +* Killing process. + +TODO + +* Run as another user. + +** Linux. + + $ su - + $ + +or + + $ sudo -u -i +