Process Viewer User Rights

From wiki.linuxonlinehelp.eu
Revision as of 16:45, 24 May 2017 by Author (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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