Difference between revisions of "Process Viewer User Rights"
Jump to navigation
Jump to search
(Created page with "==== Process View System ==== enter on Console: <pre> ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | less </pre> Output can be scrolled by up and down! ==== Process List Se...") |
(No difference)
|
Latest revision as of 16:45, 24 May 2017
Process View System
enter on Console:
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | less
Output can be scrolled by up and down!
Process List Security
shows which Process started by which User
enter on Console:
ps -eo euser,ruser,suser,fuser,f,comm,label| sort -k 1 -r | less
Output can be scrolled by up and down!
Process List Security filtered by User
enter on Console:
ps -eo euser,ruser,suser,fuser,f,comm,label|grep username |sort -k 1 -r | less