Process monitoring/shaare/s-WYKA
ps Command
ps
→ Current shell process statusps -E
→ All running processesps aux
→ All in BSD style with detailsps -EF
→ Running process with detailsps -u root
→ Processes of specific userps -EF | grep ?
→ Find process by pattern
top Command
top -u username
→ Show only that user's processestop +d c
→ Absolute pathtop +d k
→ Kill by PIDtop +d M
or+d P
→ Sort by memory or process usage
kill Commands
kill -l
→ List all signalskill PID
→ Default terminatekill -1
→ Restartkill -2
→ Equivalent to Ctrl+Ckill -9
→ Force killkill -15
→ Graceful killkillall
→ Kill all processes by namepkill
→ Kill by process name