Processes
A process is any program running in a computer. It takes space in memory.
Here is a list of commands for managing processes from the command line.
Command | Description |
---|---|
ps | snapshot of the current processes |
jobs | lists your processes |
kill | stops a process |
bg | resumes a process in the background |
fg | resumes a process in the foreground |
nohup | run a command immune to hangups |
There are also a lot of TUI tools for managing process.
top
htop