Found 2065 Articles for Operating System

Storage Management

Kristi Castro
Updated on 22-Jun-2020 08:11:24

7K+ Views

Storage management plays an important part in operating system. It deals with the storage procedures in the computer system using an operating system. Details about this is as follows −Memory ManagementMemory management plays an important part in operating system. It deals with memory and the moving of processes from disk to primary memory for execution and back again.The most important concepts in memory management are paging and segmentation. Details about these topics are given below −PagingIn a computer system, virtual memory can be created that is more than the actual memory available i.e. physical memory. To implement this, the concept ... Read More

File System Management

Alex Onsman
Updated on 22-Jun-2020 08:12:46

7K+ Views

Files are used to provide a uniform view of data storage by the operating system. All the files are mapped onto physical devices that are usually non volatile so data is safe in the case of system failure.File AttributesThe attributes of a file may vary a little on different operating systems. However, the common file attributes are −NameThis denotes the symbolic name of the file. The file name is the only attribute that is readable by humans easily.IdentifierThis denotes the file name for the system. It is usually a number and uniquely identifies a file in the file system.TypeIf there ... Read More

Open Source Operating Systems

David Meador
Updated on 22-Jun-2020 08:13:23

2K+ Views

Open Source operating systems are released under a license where the copyright holder allows others to study, change as well as distribute the software to other people. This can be done for any reason. The different open source operating system available in the market are −CosmosThis is an open source operating system written mostly in programming language C#. Its full form is C# Open Source Managed Operating System. Till 2016, Cosmos did not intend to be a fully fledged operating system but a system that allowed other developers to easily build their own operating systems. It also hid the inner ... Read More

Real-Time Embedded Systems

Kristi Castro
Updated on 22-Jun-2020 08:14:20

7K+ Views

Real time systems are those systems that work within strict time constraints and provide a worst case time estimate for critical situations. Embedded systems provide a specific function in a much larger system. When there is an embedded component in a real time system, it is known as a real time embedded system.Types of Real Time Embedded SystemsThere are primarily two types of real time embedded systems i.e. hard and soft. An illustration to explain this further is −Hard Real Time Embedded SystemThis type of system makes sure that all critical processes are completed within the given time frame. This ... Read More

Dual-Mode and Multi-Mode Operation in Operating System

David Meador
Updated on 22-Jun-2020 08:15:04

6K+ Views

There are two modes of operation in the operating system to make sure it works correctly. These are user mode and kernel mode.A diagram that illustrates the transition from user mode to kernel mode and back again is as follows −The following are the modes −User Mode:The system is in user mode when the operating system is running a user application such as handling a text editor. The transition from user mode to kernel mode occurs when the application requests the help of operating system or an interrupt or a system call occurs.The mode bit is set to 1 in ... Read More

Supervisor Mode (Privileged Mode)

Ricky Barnes
Updated on 22-Jun-2020 08:16:07

2K+ Views

Supervisor mode or privileged mode is a computer system mode in which all instructions such as privileged instructions can be performed by the processor. Some of these privileged instructions are interrupt instructions, input output management etcThe privilege levels of different components in a system is given as follows −The kernel is the most privileged part of the computer system. There are some privileged instructions that can only be executed in kernel mode or supervisor mode. The the privilege reduces for device drivers and applications respectively.Features of Supervisor ModeSome of the important features of supervisor mode are as follows −Supervisor mode ... Read More

User Mode vs Kernel Mode

Alex Onsman
Updated on 22-Jun-2020 08:17:05

17K+ Views

There are two modes of operation in the operating system to make sure it works correctly. These are user mode and kernel mode.They are explained as follows −User ModeThe system is in user mode when the operating system is running a user application such as handling a text editor. The transition from user mode to kernel mode occurs when the application requests the help of operating system or an interrupt or a system call occurs.The mode bit is set to 1 in the user mode. It is changed from 1 to 0 when switching from user mode to kernel mode.Kernel ... Read More

Operating System Structure

Kristi Castro
Updated on 22-Jun-2020 08:17:50

71K+ Views

An operating system is a construct that allows the user application programs to interact with the system hardware. Since the operating system is such a complex structure, it should be created with utmost care so it can be used and modified easily. An easy way to do this is to create the operating system in parts. Each of these parts should be well defined with clear inputs, outputs and functions.Simple StructureThere are many operating systems that have a rather simple structure. These started as small systems and rapidly expanded much further than their scope. A common example of this is ... Read More

Beowulf Clusters

David Meador
Updated on 26-Apr-2022 08:21:44

2K+ Views

A beowulf cluster is formed using normal computers that are identical. These are arranged into a small local area network (LAN). There are programs that allow these computers to share processing among them.So beowulf clusters form a parallel processing unit using common personal computers.An image that displays the first beowulf cluster at Barcelona Supercomputing Center is as follows −Image Credit − By Vcarceler [CC BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0)], from Wikimedia CommonsFeatures of Beowulf ClustersSome important features of beowulf clusters are as follows −Beowulf clusters are formed using normal computers. There is no software that denoted a cluster as a beowulf cluster.A ... Read More

Symmetric Multiprocessing Architecture

Ricky Barnes
Updated on 22-Jun-2020 08:00:38

972 Views

In symmetric multiprocessing, multiple processors work in parallel and share resources like system bus and memory. It is a type of multiprocessing system and much more complex than asymmetric multiprocessing system.Symmetric Multiprocessing ArchitectureThe image depicting symmetric multiprocessing architecture is as follows −Some points explaining the above figure are −All the processors in the symmetric multiprocessing architecture contain a common bus and main memory. That is why symmetric multiprocessing is known as tightly coupled multiprocessing.Each of the processors in symmetric multiprocessing are equal and can execute different processes as required no matter where these processes are stored in memory. This is ... Read More

Advertisements