Process monitoring/shaare/AX4RkQ
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 with specific id
top Command
top -u username→ Show only that user's processestop then c→ Absolute pathtop then k→ Kill by PIDtop then morthen 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
(97)