Navigation

What is a kernel? Is it hardware or software?

In operating system, the kernel is a computer program that manages input/output requests from software, and translates them into data processing instructions for the central processing unit and other electronic components of a computer
What is a kernel Is it hardware or software


WHAT IS KERNEL?
“In operating system, the kernel is a computer program that manages input/output requests from software, and translates them into data processing instructions for the central processing unit and other electronic components of a computer.”

- The kernel is a fundamental part of a modern computer’s operating system

• The critical code of the kernel is usually loaded into a protected area of memory, which prevents it from being overwritten by other, less frequently used parts of the operating system or by applications.

 • The kernel performs its tasks, such as executing processes and handling interrupts, in kernel space, whereas everything a user normally does, such as writing text in a text editor or running programs in a GUI (graphical user interface), is done in user space.

 • This separation prevents user data and kernel data from interfering with each other and thereby diminishing performance or causing the system to become unstable (and possibly crashing).

 • When a process makes requests of the kernel, the request is called a system call. 

 • For example, a monolithic kernel executes all the operating system instructions in the same address space in order to improve the performance of the system. A microkernel runs most of the operating system’s background processes in user space, to make the operating system more modular and, therefore, easier to maintain.

FUNCTIONS OF THE KERNEL

The central processing unit: The kernel takes responsibility for deciding at any time which of the many running programs should be allocated to the processor or processors.
Random-access memory: Random-access memory is used to store both program instructions and data. Typically, both need to be present in memory in order for a program to execute. Often multiple programs will want access to memory, frequently demanding more memory than the computer has available. The kernel is responsible for deciding which memory each process can use, and determining what to do when not enough memory is available.

Input/output (I/O) devices: I/O devices include such peripherals as keyboards, mice, disk drives, printers, network adapters, and display devices. The kernel allocates requests from applications to perform I/O to an appropriate device and provides convenient methods for using the device.

Kernels also usually provide methods for synchronization and communication between processes called interprocess communication (IPC).

TYPES OF KERNEL

- Monolithic kernels provide rich and powerful abstractions of the underlying hardware.
Microkernels provide a small set of simple hardware abstractions and use applications called servers to provide more functionality.

Exokernel provide minimal abstractions, allowing low-level hardware access. In exokernel systems, library operating systems provide the abstractions typically present in monolithic kernels.

Hybrid (modified microkernels) are much like pure microkernels, except that they include some additional code in kernel space to increase performance.

>> Also you can read: What is cached data? Will it cause any problems, if we clear cached data

مشاركة

أضف تعليق: