14 Dec 2019

  • December 14, 2019
  • Amitraj
Components Of Linux Operating System

Linux operating system has primarlly three key components:-


1. Kernel 

kernel is the core part of linux. it is responsible for all major activities of this operating system.

It consists of various modules and it interacts directly with the underlying hardware which provides low-level services like providing hardware details to the system. we have two types of kernel: monolithic kernel and microkernel.



2. System - Library

system libraries are special functions or programs using which application program or system utilities accesses kernel's features. These libraries implement most of the functionalities of the OS and do not requires kernel module's code accesses rights.



3. System - Utility

Operating system functions are granted to the user from the Utilities. Individual and specialized functions are can be utilized from the System utilities.




                        Linux Operating System

System software

User-
process

User-
utility

Compilers
                    
                      System-libraries
                             Kernel
                       Kernel-modules

   
CPU
RAM
I/O
                          Hadware 
         
    









Basic Shell Command in Linux

A shell is a special user program which provides an interface to the user operating system services.

Shell accept human readable commands from the user and convert them into some-thing which kernel can understand, the shell gets started when the user logs in or start the terminal.

Related Posts:

  • Semaphores in Process Synchronization Introduction to Semaphores ->In 1965, Dijkstra proposed a new and very significant technique for managing concurrent processes by using the value of a simple integer variable to synchronize the progress of interacting pr… Read More
  • Process Synchronization: Critical Section Problem Process Synchronization A co-operative process is the one which can affect the execution of other process or can be affected by the execution of other process. Such processes need to be synchronized so that their order of e… Read More
  • Types of CPU Scheduling in OS CPU scheduling decisions may take place under the following four circumstances: 1.When a process switches from the running state to the waiting state(for I/O request or invocation of wait for the termination of one of the c… Read More
  • CPU Scheduling: Scheduling Criteria Scheduling Criteria There are many different criterias to check when considering the "best" scheduling algorithm, they are: CPU Utilization To make out the best use of CPU and not to waste any CPU cycle, CPU would be worki… Read More
  • Classical Problems of Synchronization in OS Classical Problems of Synchronization In this tutorial we will discuss about various classic problem of synchronization. Semaphore can be used in other synchronization problems besides Mutual Exclusion. Below are some of … Read More

Translate

Popular Posts