0 votes
in Linux by
What is the Linux Kernel?

1 Answer

0 votes
by

It is the main component of a Linux Operating System and is the core interface between a computer's hardware and its processes. It communicates between the two, managing resources as efficiently as possible.

The kernel has four jobs:

  1. Memory management: It keeps track of the amount of memory used.
  2. Process management: It determines which process can use the CPU, when, and for how long.
  3. Device drivers: It acts as a mediator/interpreter between the hardware and processes.
  4. System calls and security: It receives a request for service from the processes.
...