• A process is a program in execution
  • At a particular instant of time, it can be either
    • running - has the core
    • sleeping - in the process queue
    • zombie - a process that completed its task, but waiting for its parent process to accept the return value
  • Types of processes in Linux
    1. Interactive - run by the user in the CLI
    2. Batch
    3. Daemon

Refs