1.2.1 Systems Software Flashcards
Operating Systems, BIOS, Drivers and Virtual Machines
What does OS stand for?
Operating System
What is an Operating System?
A program or set of programs that manages the operation of a computer for the user. It acts as a bridge between the user and the computers hardware.
Why was the Operating System made?
To make using a computer easier for humans.
Where is the Operating System held?
In permanent (secondary) storage
How is the Operating system loaded?
A program called the ‘Loader’, which is stored in the BIOS, is run which sends instructions to load the OS into RAM so that it can run.
What are some examples of Operating Systems?
Windows, MacOS, IOS, Linux, Android.
What functions does the Operating System have to do?
Resource Management.
File Management.
Security.
Running Software.
Handling Interrupts.
Providing a GUI.
Providing Utilities.
How does the Operating System do Resource Management?
It decides where data is sent in the computer and what each component should do with the data. Includes Memory and CPU management.
How does the Operating System do File Management?
By storing files on the hard drive so they can be accessed later.
What does the Operating system allow you to do with files?
Move, Copy, Rename and Remove files
How does the Operating System Provide Security?
Protects against malware and unauthorised access (passwords).
Ensures that apps don’t interfere with each other.
Different users on the same machine shouldn’t be able to access each other’s data.
Encrypts data where necessary.
How does the Operating System provide a platform to run software?
Provides an easy way to run software on the computer that can add functionality to the computer, allowing you to do more with it than the OS allows as standard.
How does the Operating system do Interrupt Handeling?
It processes interrupts where other software and hardware sends information to the OS to interrupt it if an action requires immediate attention.
What does GUI stand for?
Graphical user Interface?
What is the Operating System’s GUI made up of?
CLI, WIMP
What does CLI stand for?
Command Line Interface
What does WIMP stand for?
Windows, Icons, Menus and Pointers
How does the Operating System provide utilities?
By adding functionality to the computer beyond what it does as standard.
What utilities does an Operating System provide that is beyond standard?
Compression, Defragmentation, Encryption
What is Memory Management?
How memory (RAM) is organised
What controls Memory Management?
The Operating System?
What happens if RAM becomes full?
The computer may crash or start using virtual memory
What are the different types of memory management?
Paging, Segmentation, Virtual Memory
What must the Operating system do in order to successfully manage memory?
Allocate enough memory for each process to run.
Split memory so that it can be allocated to a process (paging and segmentation). This must be done fairly to give each process an equal opportunity to run.
Employ security so that processes can’t access each other’s data.
Have efficient sharing of memory so as little is used for as short of a time as possible.
Be ready to extend to virtual memory if needed.
How is RAM divided?
Into bytes that are numbered, starting from 0. This is the address of that location/byte
What is the RAM address?
The physical location within RAM
Why cant you write code for a specific RAM address?
You cant ensure that the location will be available
What is happening within RAM?
Programs opening and closing at different times with different requirements.
What can malicious programs do?
Demand too much memory.
refuse to close/ reopen once closed.
Try to load to ram locations that are already being used.
Look at other locations in RAM that they don’t have access to.
What is paging?
Where the RAM is divided into ‘Pages’ of a fixed size
How big are pages typically?
4kb
How are processes allocated in paging?
Split between pages non-continuously, the pages are not nessiserely next to each other in RAM.
What can processes do in paging?
View the pages that its code is within but not the pages of the other processes - so it doesn’t know whats running where
How is paging inefficient?
Programs are not split up evenly - so loops can be spread across multiple pages.
Programs may not take up a whole page so there is wasted space where nothing is stored - inefficient use of RAM
What is segmentation?
Similar to paging but each segment is a variable size. So each segment will only be as big as it needs to be, so no memory space is wasted.
How are segments determined?
Based on the process requesting space. The space granted depends on:
If the file size is known in advance.
It contains blocks of code that depend on each other.
It contains whole sections that relate to themselves.
How is segmentation beneficial over paging?
Solves the issues of different program sizes leading to wasted space
Whats the difference between the divisions in paging and segmentation?
Paging uses physical divisions based on the physical locations in memory. Segmentation uses logical divisions based on the best places to divide the segments with the process in question.
What is virtual memory?
Using the hard drive as if it were RAM
When is virtual memory used?
When RAM has become full of data
What does the OS do when using virtual memory?
Offload the temporarily inactive pages in the RAM to the disk.
What would happen if Virtual Memory wasn’t used?
If the RAM becomes full it can cause the computer to crash as there is nowhere to store potentially essential programs.
How does Virtual memory effect performance?
It degrades the performance of the computer as it takes longer to read and write data to secondary storage than to RAM. If there are too many pages being swapped between secondary storage and RAM then the performance could degrade so much that the computer is essentially unusable.
How does Virtual Memory degrade the hardware of the computer?
Causes ‘Disk Thrashing’ where the read/write head of the hard drive does so many cycles in quick succession that it causes physical damage to the drive. This can mean that data cant be read from the drive anymore.
What is an interrupt?
A signal from software, hardware or the internal clock to the CPU to inform it that an action requires immediate attention.
Why are interrupts called by software?
When applications terminate or request certain services.
Why are interrupts called by hardware?
When IO operations are complete, when the hardware fails, or for peripheral management (e.g. printer out of paper)
Why are interrupts called by timers?
Happens at regular intervals to indicate to the CPU that its time for the next process to have processor time. This allows multitasking to take place
When do interrupts take place?
At the end of the FDE cycle, once one cycle is complete it then checks for any interrupts.
Fetch - Decode - Execute - Interrupts?
Does the operating system have to acknowledge interrupts?
No. The OS can choose to ignore them based on their priority and the priority of the task currently running.
What issues could there be with interrupts?
Interrupting important processes - e.g. antimalware.
Have to ensure the CPU returns to what it was doing before it was interrupted after the interrupt is dealt with.
Interrupting during an interrupt.
What does ISR stand for?
Interrupt Service Routine
What is the Interrupt Service Routine?
A program stored on the CPU with its own set of instructions that can enter the FDE cycle to deal with an interrupt.
What happens when an interrupt occours?
The CPU suspends the execution of the current program, process or interrupt of a lower priority. The current values of the registers (PC, MAR, MDR, CIR, etc..) are copied to a stack in RAM called the ‘Stack Frame’ so that they can be accessed later.
The Interrupt Service Routine is then called to deal with the interrupt. A different routine will be called depending on the type of interrupt.
What is the benefit of the Stack Frame?
Allows many interrupts to be dealt with as once it’s done with one the previous state of the CPU can be restored and the FDE cycle continues.
What is the priority of an interrupt compared to a normal program?
Almost always of a higher priority
What are priorities of interrupts?
How important an interrupt is, and how big of an effect not dealing with it will have on the computer.
What are the rules with interrupt priotities?
An interrupt will only interrupt another interrupt if it is of a higher priority than the one currently being executed. Once the higher priority interrupt is dealt with the previous can continue.
What is responsible for allocating processor time and scheduling what is next to be executed?
The Operating System - Scheduler Module
How does scheduling improve CPU efficiency?
While the CPU is processing one thing the OS can be getting the next one ready
How does scheduling allow multitasking to take place?
A single-core processor can only do one instruction at a time but the task can be split into smaller chunks that the OS can schedule to switch between to give the impression they are happening simultaneously.
What are the states that a process can be in?
Executed - Finished
Running - Being processed
Blocked - Further IO is required
Suspended - Time expired or moved to the back of the queue
What is the Process Ready Queue?
The queue of all the processes and the order in which they are going to be executed. The order is determined by an algorithm.
What are the objectives of the schedular?
Minimise Starvation.
Resolve Deadlocks.
Maximise Throughput.
Be fair to all users.
Provide acceptable response time.
Keep hardware busy.
What is process starvation?
When a process isn’t processed
How does the scheduler prevent process starvation?
Ensuring that the process is never not executed.
What is deadlock?
An issue that occurs in scheduling when two processes arrive at the same time and have the same priority, time and memory requirements. Which one do you execute first?
How does the scheduler maximise throughput?
Doing as much as possible in as little time as possible.
How is the scheduler fair to all users?
All users have the same priority and their jobs will be processed at the same chance as someone else with the same job. Admins don’t get priority.
How does the scheduler provide acceptable response times?
Ensuring no one has to wait too long for their job to be processed.
What does a pre-emptive scheduling method mean?
Processes can re-join the PRQ after partial completion
What does a not pre-emptive scheduling method mean?
Processes are fully executed and finished with and do not re-join the process ready queue
What is Round Robin Scheduling?
Each process is allocated a fixed amount of CPU time. If the process is not complete by the end of this time then its sent to the back of the Process Ready Queue in its semi-completed state and has to wait for its next turn to do more.
What is the allocated time for a process called in Round Robin?
Time Slice, or Quantum
Is Round Robin pre-emptive or not?
Pre-emptive - processes return to the PRQ partially completed
What are the benefits of Round Robin?
Minimises starvation as every process has an equal opportunity of being executed by the CPU. Ensures a reasonable response time.
What are the drawbacks of Round Ronin?
If a process takes less time to complete than the time slice there may be latency in starting the next process.
How does the OS help to facilitate Round Robin?
Sets an interrupting clock or interval timer that generates interrupts at specific intervals to move the process on.
Where would you use Round Robin?
Computers running with a few simple processes
Where wouldn’t you use Round Robin?
Interfaces as the latency will be noticable.
What does FCFS stand for?
First Come First Serve
What does FIFO stand for?
First In First Out
Is First Come First Served a pre-emptive scheduling method?
No - processes are processed to completion and do not re-join the PRQ
What is the first come first serve scheduling method?
Processes are completed on a first come first serve basis, each one is processed until it is done before moving onto the next one.
What are the drawbacks of First Come First Serve scheduling?
Each process must wait its turn, there are no priorities and if a process is taking a long time the subsequent processes have to wait - could lead to starvation
What does SJF stand for?
Shortest Job First
What is Shortest Job First scheduling?
The process with the shortest estimated runtime goes to the front of the Process Ready Queue and is executed first.
What is needed in order for Shortest Job First to work?
The sheduler must know how long each process is going to take - estimated by the OS
What are the drawbacks of Shortest Job First scheduling?
The Process Ready Queue will need constant sorting when new processes arrive, this takes additional time and processing power.
There is a high risk of starvation for long processes as shorter ones are always done first.
Is Shortest Job First a pre-emptive scheduling method?
No - Processes are processed to completion
What does STR stand for?
Shortest Time Remaining
Is Shortest Time Remaining a pre-emptive scheduling method?
Yes - processes can return to the Process Ready Queue while partially completed.
How does the Shortest Time Remaining scheduling method work?
If a new process arrives with a shorter remaining time than the current process then the current process is suspended and sent to the back of the process ready queue. The new process with the shorter time remaining is sent to the front of the queue and is executed next.
How does Shortest Time Remaining increase throughput?
Leads to the gradual reduction in the time remaining for each process, which increases their priority.
How does Shortest Time Remaining reduce starvation?
Means that the process can be changed before the task is complete. However, there is still a risk of starvation of longer processes.
What are the drawbacks of Shortest Time Remaining Scheduling methods?
The Process Ready Queue has to be constantly sorted which takes time and processing power to complete.
Requires knowledge of how long the job will take to complete (estimates are produced by the operating system - these could be inaccurate)
What does MLFQ stand for?
Multi Level Feedback Queues
Is a Multi Level Feedback Queue a pre-emtive scheduling method or not?
Yes - processes re-join the Process Ready Queue after partial completion or to the back of the process ready queue of another core.
What is the priority for the Multi Level Feedback Queue scheduling method?
Prioritises:
shorter jobs.
I/O bound processes.
How does The Multi Level Feedback Queue scheduling method work?
It separates processes into categories based on their processing needs. In a multicore processor each core will have its own process ready queue that has its own priority rating. Each core works on a first come first serve basis.
What does the Multi Level Feedback Queue scheduler move processes between queues based on?
If its new - New processes are added to the end of level 0.
If the process gives up its own position - added to the end of the current queue that it is in.
If the process is stopped by the schedular - demoted to a lower level queue.
If it gets blocked for input/output - Gets promoted to the next level
Why are processes needing I/O promoted to the next level in a MLFQ?
Its had to wait for I/O so has lost time - this prevents further time loss. The chance for further I/O requirements is quite high.
What are the types of operating systems?
Distributed.
Embeded.
Multi-tasking
Multi-user.
Real Time.
What is a distributed operating system?
A form of parallel processing which spreads the load over multiple computers. The distributed operating system controls and coordinates the computers
How does a distributed Operating system work?
A single job is split up into several tasks that are run on separate computers. This is controlled by the OS.
What are the benefits of a Distributed OS?
To the user it feels as though it is happening on a single system.
Load balancing can take place - where heavy processing or traffic can be offloaded to additional servers.
What is a multi-tasking OS?
An OS that operates on a standalone computer and can do many things at once.
How do multi-tasking operating systems work?
The processes are given a slice of time on the processor. This applies to single and multi-core systems.
What is a multi-user OS?
An OS that allows multiple users. This can be on a single machine or via a server.
How do Multi-User OSs work on a single computer?
Each user has their own set of permissions setup by the admin. All the users have their own accounts with their own data. The data of the other users isn’t accessible to them.
How do Multi-user OSs work on a server?
The server OS will handle the requests of many users at the same time. The requests come from many terminals connected to the computer.
What is an embedded OS?
A specific OS designed to run on a specific device in order to carry out a designated task.
What are the features of an embedded operating system?
Typically have a specific set of Inputs and outputs, minimal user interface, low power requirements, little processing capabilities and little memory.
What does RTOS stand for?
Real Time Operating System
What is a Real Time OS?
An operating system that processes information as fast as possible so that it is done in ‘real time’.
Where are Real Time OSs used?
For safety critical systems like hospitals, automatous vehicles, aeroplanes, military and power stations.
When are Real Time OSs used?
When processes have to be guaranteed to have executed within a known time frame or acted upon immediately?
What is needed so that Real Time OSs can operate?
Have high redundancy to handle sudden increases in input data. Means that RTOSs rarely run at capacity. The systems will have ‘fail safes’ that will detect and react to hardware failure.
What does BIOS stand for?
Basic Input Output System
What is the BIOS?
A program stored in the ROM or EPROM that starts up the computer once it is turned on
What does EPROM stand for?
Erasable Programable Read Only Memory
What is the function of the BIOS?
To initialise and test the system hardware components