OPERATING SYSTEMS ( OS )
What is an operating system? An operating system (sometimes abbreviated as "OS") is the program that, after being initially loaded into the computer by a boot program, manages all the other programs in a computer. The other programs are called applications or application programs. The application programs make use of the operating system by making requests for services through a defined application program interface (API). In addition, users can interact directly with the operating system through a user interface such as a command language or a graphical user interface (GUI).
An operating system performs these services for applications:
All major computer platforms (hardware and software) require and sometimes include an operating system. Linux, Windows, VMS, OS/400, AIX, and z/OS are all examples of operating systems.
CLASSIFICATION OF OPERATING SYSTEMS.
Single- and multi-tasking
A single-tasking system can only run one program at a time, while a multi-tasking operating system allows more than one program to be running in concurrency. This is achieved by time-sharing, dividing the available processor time between multiple processes which are each interrupted repeatedly in time-slices by a task scheduling subsystem of the operating system. Multi-tasking may be characterized in preemptive and co-operative types. In preemptive multitasking, the operating system slices the CPU time and dedicates a slot to each of the programs. Unix-like operating systems, e.g., Solaris, Linux, as well as AmigaOS support preemptive multitasking. Cooperative multitasking is achieved by relying on each process to provide time to the other processes in a defined manner. 16-bit versions of Microsoft Windows used cooperative multi-tasking. 32-bit versions of both Windows NT and Win9x, used preemptive multi-tasking.
Single- and multi-user Single-user operating systems have no facilities to distinguish users, but may allow multiple programs to run in tandem.[4] A multi-user operating system extends the basic concept of multi-tasking with facilities that identify processes and resources, such as disk space, belonging to multiple users, and the system permits multiple users to interact with the system at the same time. Time-sharing operating systems schedule tasks for efficient use of the system and may also include accounting software for cost allocation of processor time, mass storage, printing, and other resources to multiple users.
Distributed
A distributed operating system manages a group of distinct computers and makes them appear to be a single computer. The development of networked computers that could be linked and communicate with each other gave rise to distributed computing. Distributed computations are carried out on more than one machine. When computers in a group work in cooperation, they form a distributed system.
Templated
In an OS, distributed and cloud computing context, templating refers to creating a single virtual machine image as a guest operating system, then saving it as a tool for multiple running virtual machines (Gagne, 2012, p. 716). The technique is used both in virtualization and cloud computing management, and is common in large server warehouses.
Embedded
Embedded operating systems are designed to be used in embedded computer systems. They are designed to operate on small machines like PDAs with less autonomy. They are able to operate with a limited number of resources. They are very compact and extremely efficient by design. Windows CE and Minix 3 are some examples of embedded operating systems.
Real-time
A real-time operating system is an operating system that guarantees to process events or data within a certain short amount of time. A real-time operating system may be single- or multi-tasking, but when multitasking, it uses specialized scheduling algorithms so that a deterministic nature of behavior is achieved. An event-driven system switches between tasks based on their priorities or external events while time-sharing operating systems switch tasks based on clock interrupts.
Library
A library operating system is one in which the services that a typical operating system provides, such as networking, are provided in the form of libraries. These libraries are composed with the application and configuration code to construct unikernels — which are specialised, single address space, machine images that can be deployed to cloud or embedded environments.
These are the example of the Operating systems Logo.
What is an operating system? An operating system (sometimes abbreviated as "OS") is the program that, after being initially loaded into the computer by a boot program, manages all the other programs in a computer. The other programs are called applications or application programs. The application programs make use of the operating system by making requests for services through a defined application program interface (API). In addition, users can interact directly with the operating system through a user interface such as a command language or a graphical user interface (GUI).
An operating system performs these services for applications:
- In a multitasking operating system where multiple programs can be running at the same time, the operating system determines which applications should run in what order and how much time should be allowed for each application before giving another application a turn.
- It manages the sharing of internal memory among multiple applications.
- It handles input and output to and from attached hardware devices, such as hard disks, printers, and dial-up ports.
- It sends messages to each application or interactive user (or to a system operator) about the status of operation and any errors that may have occurred.
- It can offload the management of what are called batch jobs (for example, printing) so that the initiating application is freed from this work.
- On computers that can provide parallel processing, an operating system can manage how to divide the program so that it runs on more than one processor at a time.
All major computer platforms (hardware and software) require and sometimes include an operating system. Linux, Windows, VMS, OS/400, AIX, and z/OS are all examples of operating systems.
CLASSIFICATION OF OPERATING SYSTEMS.
Single- and multi-tasking
A single-tasking system can only run one program at a time, while a multi-tasking operating system allows more than one program to be running in concurrency. This is achieved by time-sharing, dividing the available processor time between multiple processes which are each interrupted repeatedly in time-slices by a task scheduling subsystem of the operating system. Multi-tasking may be characterized in preemptive and co-operative types. In preemptive multitasking, the operating system slices the CPU time and dedicates a slot to each of the programs. Unix-like operating systems, e.g., Solaris, Linux, as well as AmigaOS support preemptive multitasking. Cooperative multitasking is achieved by relying on each process to provide time to the other processes in a defined manner. 16-bit versions of Microsoft Windows used cooperative multi-tasking. 32-bit versions of both Windows NT and Win9x, used preemptive multi-tasking.
Single- and multi-user Single-user operating systems have no facilities to distinguish users, but may allow multiple programs to run in tandem.[4] A multi-user operating system extends the basic concept of multi-tasking with facilities that identify processes and resources, such as disk space, belonging to multiple users, and the system permits multiple users to interact with the system at the same time. Time-sharing operating systems schedule tasks for efficient use of the system and may also include accounting software for cost allocation of processor time, mass storage, printing, and other resources to multiple users.
Distributed
A distributed operating system manages a group of distinct computers and makes them appear to be a single computer. The development of networked computers that could be linked and communicate with each other gave rise to distributed computing. Distributed computations are carried out on more than one machine. When computers in a group work in cooperation, they form a distributed system.
Templated
In an OS, distributed and cloud computing context, templating refers to creating a single virtual machine image as a guest operating system, then saving it as a tool for multiple running virtual machines (Gagne, 2012, p. 716). The technique is used both in virtualization and cloud computing management, and is common in large server warehouses.
Embedded
Embedded operating systems are designed to be used in embedded computer systems. They are designed to operate on small machines like PDAs with less autonomy. They are able to operate with a limited number of resources. They are very compact and extremely efficient by design. Windows CE and Minix 3 are some examples of embedded operating systems.
Real-time
A real-time operating system is an operating system that guarantees to process events or data within a certain short amount of time. A real-time operating system may be single- or multi-tasking, but when multitasking, it uses specialized scheduling algorithms so that a deterministic nature of behavior is achieved. An event-driven system switches between tasks based on their priorities or external events while time-sharing operating systems switch tasks based on clock interrupts.
Library
A library operating system is one in which the services that a typical operating system provides, such as networking, are provided in the form of libraries. These libraries are composed with the application and configuration code to construct unikernels — which are specialised, single address space, machine images that can be deployed to cloud or embedded environments.
These are the example of the Operating systems Logo.
Really Good article.
ReplyDeleteBut, You can also read this article by clicking this link: Operating System meaning with details.
>>>>> Download Now
ReplyDelete>>>>> Download Full
>>>>> Download LINK
>>>>> Download Now
>>>>> Download Full
>>>>> Download LINK
this post is vary nice
ReplyDeleteSamsun
ReplyDeleteNevşehir
Van
Bartın
Edirne
LF6CO
antalya evden eve nakliyat
ReplyDeleteankara evden eve nakliyat
bursa evden eve nakliyat
yalova evden eve nakliyat
gümüşhane evden eve nakliyat
70G
3BFB3
ReplyDeleteBatman Evden Eve Nakliyat
Isparta Evden Eve Nakliyat
Karabük Evden Eve Nakliyat
Mersin Evden Eve Nakliyat
Tekirdağ Boya Ustası
78ACD
ReplyDeleteorder anapolon oxymetholone
order fat burner
order trenbolone enanthate
halotestin
Çerkezköy Parke Ustası
Silivri Fayans Ustası
Silivri Parke Ustası
testosterone propionat for sale
Muğla Evden Eve Nakliyat
F664F
ReplyDeleteBitfinex Güvenilir mi
Samsun Şehir İçi Nakliyat
Kırıkkale Şehir İçi Nakliyat
Etlik Boya Ustası
Çerkezköy Fayans Ustası
Etimesgut Fayans Ustası
İstanbul Parça Eşya Taşıma
İzmir Lojistik
Ünye Parke Ustası
1A332
ReplyDeleteKırşehir Şehirler Arası Nakliyat
Ünye Çatı Ustası
Kayseri Lojistik
Manisa Şehirler Arası Nakliyat
Kripto Para Nedir
Ardahan Şehir İçi Nakliyat
Tokat Lojistik
Giresun Şehir İçi Nakliyat
Rize Şehir İçi Nakliyat
8A99C
ReplyDeleteAltındağ Parke Ustası
Binance Güvenilir mi
Çerkezköy Oto Boya
Zonguldak Parça Eşya Taşıma
Elazığ Lojistik
Çankaya Parke Ustası
Silivri Boya Ustası
Erzurum Evden Eve Nakliyat
Van Şehirler Arası Nakliyat
BB095
ReplyDeleteGölbaşı Parke Ustası
Sinop Lojistik
Sivas Parça Eşya Taşıma
Uşak Şehir İçi Nakliyat
Muş Şehirler Arası Nakliyat
Samsun Parça Eşya Taşıma
Kayseri Şehir İçi Nakliyat
Ağrı Evden Eve Nakliyat
Raca Coin Hangi Borsada
966F4
ReplyDeletekomisyon indirimi %20
5C7ED
ReplyDeletecanlı sohbet uygulamaları
kars rastgele sohbet odaları
seslı sohbet sıtelerı
karaman kızlarla rastgele sohbet
eskişehir goruntulu sohbet
ücretsiz sohbet uygulamaları
sakarya sohbet sitesi
izmir nanytoo sohbet
çorum canlı sohbet bedava
A0EC4
ReplyDeleteBitcoin Kazma Siteleri
Binance Hangi Ülkenin
Kwai Takipçi Satın Al
Kripto Para Çıkarma
Binance Kaldıraçlı İşlem Nasıl Yapılır
Bitcoin Üretme
Görüntülü Sohbet Parasız
Binance Nasıl Üye Olunur
Gate io Borsası Güvenilir mi
EA980
ReplyDeletemetamask
phantom
onekey
quickswap
uwu lend
poocoin
shiba
aave
dextools