Knowledge Base

308 copy-ready commands with fill-in variables, plus step-by-step installation guides.

Installation Guides 11

Categories

Installation Guides (11)

Tags

8 results

Processes & System

Find a Running Process

ps aux | grep {{process_name}} | grep -v grep
#ps #process
3 views 0 copies
Processes & System

Kill a Process by PID

kill {{pid}}
#kill #process
3 views 0 copies
Processes & System

Kill All Processes by Name

pkill {{process_name}}
#pkill #kill
3 views 0 copies
Processes & System

Run Command in Background (nohup)

nohup {{command}} > {{logfile}} 2>&1 &
#nohup #background
3 views 0 copies
Processes & System

Check System Uptime and Load

uptime
#uptime #load
3 views 0 copies
Processes & System

Find Process Using a Port

lsof -i :{{port}}
#lsof #port
3 views 0 copies
Processes & System

System Kernel and OS Info

uname -a
#uname #kernel
3 views 0 copies
Processes & System

Install and Run htop

apt install -y htop
#htop #process
3 views 0 copies