Process Management

Process

English

Overview

A unit of a running program.

Details

An instance of a running program -- the OS's unit of management, with its own independent memory space and resources, listable with the ps command. Each run of the same program is treated as a separate process with its own PID, and a new process is created by duplicating an existing one via the fork() system call.

More Linux terms