Posts

Showing posts from November, 2022

Lab Setup

Download ISO:   CentOS Mirror (extreme-ix.org) Download VirtualBox Downloads – Oracle VM VirtualBox

Major Functionalities of Operating System:

  Major Functionalities of Operating System:  Resource Management:  When parallel accessing happens in the OS means when multiple users are accessing the system the OS works as Resource Manager, Its responsibility is to provide hardware to the user. It decreases the load in the system. Process Management:  It includes various tasks like  scheduling and termination  of the process. It is done with the help of  CPU Scheduling  algorithms. Storage Management:  The  file system  mechanism used for the management of the storage.  NIFS ,  CFS ,  CIFS ,  NFS , etc. are some file systems. All the data is stored in various tracks of Hard disks that are all managed by the storage manager. It included  Hard Disk . Memory Management:  Refers to the management of primary memory. The operating system has to keep track of how much memory has been used and by whom. It has to decide which process needs memory space and ...

Basic of Operating System

What is Operating System ? Operating system is an interface between user and the computer hardware. The hardware of the computer cannot understand the human readable language as it works on binaries i.e. 0's and 1's. Also it is very tough for humans to understand the binary language, in such case we need an interface which can translate human language to hardware and vice-versa for effective communication. Types of Operating System:  Single User - Single Tasking Operating System  Single User - Multitasking Operating System  Multi User - Multitasking Operating System Single User - Single Tasking Operating System In this type of operating system only one user can log into system and can perform only one task at a time. E.g.: MS-DOS Single User - Multi tasking operating System This type of O/S supports only one user to log into the system but a user can perform multiple tasks at a time, browsing internet while playing songs etc. E.g.: Windows -98,Xp,vista,Seven etc. Multi User ...