terminal
Welcome to Linux Practice Terminal!
Type "help" to see available commands.
user@linux:~$
ps & kill - Process Management
Learn to view running processes and send signals with ps and kill.
Step 1
Run ps to see processes in your current terminal session.
Type: ps
ps
Step 2
Use ps aux to see ALL running processes with detailed info.
Step 3
Combine ps with grep to find the node process.
Step 4
Run top to see a system overview with process resource usage.
Step 5
Kill the node server process (PID 312) using the kill command.
Step 6
Verify the node process is gone by searching again.