1

When referring to Linux or Unix, init is a program loaded by the kernel that spawns all other processes and typically uses PID 1.

What does spawn mean in this sentence? Thank you.

tchrist
  • 134,759

1 Answers1

1

The word spawn is being used as a transitive verb:

: to cause (something) to develop or begin : to produce or create (something)
Merriam-Webster

In UNIX operating systems, this is accomplished by self-replication, and then the clone (the one that does not have the same process id as the original, usually called the child) allows itself to be usurped by a different program (executable).

jxh
  • 10,463