Skip to main content

Operating System ||Unit I || Operating System Architecture


Operating System Architecture 

Architecture & Design Of Operating System


 1.      MONOLITHIC SYSTEMS 
 

  • The core software components of an operating system are collectively known as the kernel.
  • The kernel has unrestricted access to all of the resources on the system. 
  • In monolithic systems, each component of the operating system was contained within the kernel, could communicate directly with any other component, and had unrestricted system access.
  • While  this made the operating system very efficient, it also meant that errors were more difficult to isolate, and there was a high risk of damage due to erroneous or malicious code. 
Monolithic OS


2. Layered OS architecture 

Layered OS

  • The layered structure approach breaks up the operating system into different layers and retains much more control on the system.        
  • The bottom layer (layer 0) is the hardware, and the topmost layer (layer N) is the user interface. These layers are so designed that each layer uses the functions of the lower-level layers only.  
  • It simplifies the debugging process as if lower-level layers are debugged, and an error occurs during debugging. The error must be on that layer only as the lower-level layers have already been debugged.

  • The modularity of layered operating systems allows the implementation of each layer to be modified without requiring any modification to adjacent layers. Although this modular approach imposes structure and consistency on the operating system, simplifying debugging and modification, a service request from a user process may pass through many layers of system software before it is serviced and performance compares unfavorably to that of a monolithic kernel.
  • Also, because all layers still have unrestricted access to the system, the kernel is still susceptible to errant or malicious code.
  • Many of today’s operating systems, including Microsoft Windows and Linux, implement some level of layering. 

3. A MICROKERNEL 

  •    A micro kernel architecture includes only a very small number of services within the kernel in an attempt to keep it small and scalable.
  •      The services typically include low-level memory management, inter-process communication and basic process synchronization to enable processes to cooperate. communication and basic process synchronization to enable processes to cooperate.
  •     In microkernel designs, most operating system components, such as process management and device management, execute outside the kernel with a lower level of system access. 
  • Micro kernels are highly modular, making them extensible, portable and scalable. Operating system components outside the kernel can fail without causing the operating system to fall over.
  •   Once again, the downside is an increased level of inter-module communication which can degrade system performance.

Micro kernel OS


Popular posts from this blog

XML TECHNOLGY FAMILY #3 - Advantages of XML Over HTML, EDI, Databases

Advantages of XML Over HTML , EDI , Databases

XML TECHNOLOGY FAMILY #2 - BENEFITS OF XML

BENEFITS OF XML

PROGRAMMING IN JAVA || UNIT 1- || DEFINE CLASS

  II BCA -  CORE PAPER 3 PROGRAMMING IN JAVA UNIT 1 DEFINE CLASS Java Class   ·         A  Java Class  is like a  wrapper or envelope  that comprises a number of Methods and Variables. ·         A class defines the properties and behavior of an object. ·         In Java class, the variables represent the properties of the object and the methods that represent the behavior of the object. ·         A Java program consists of a CLASS with some Methods & Variable. Java Class Syntax Java classes defined in the following way: class MyClass {             // fields,             // constructor, and             // method declarations             } Java class declarations can include the following components: 1.       Modifiers such as  public ,  private (the  private  modifier can only be applied to  Nested Classes .) 2.     The class name, with the initial letter capitalized by convention. 3.     The name of the class's parent (superclass), if any, prece