Unit 2 - Operating System Flashcards
what is an operating system
software needed to manage communication with computer hardware
how is an operating system booted
the boot loader in ROM loads the OS into RAM when the computer is switched on
functions of an operating system
- user interface
- memory management
- interrupt service routines
- processor scheduling
- backing store management
- management of all I/Os
why does an operating system have memory management
programs and their data needed to be loaded into RAM to be used. the OS must manage the allocation of RAM to different programs. there may not be sufficient RAM for all desired processes to be completely loaded into RAM at once
what is paging
- available memory is divided into fixed size pieces called pages
- each page has an address
- a process loaded into RAM is allocated sufficient pages, but those pages may not be contiguous (next to each other) in physical terms
- a page table maps between the logical memory locations and the physical memory locations
what is segmentation
- a logical method of memory allocation where memory is divided into segments which can be of different lengths
- segments can relate to parts of a program, for example a particular function or subroutine may occupy a segment
what is virtual memory
- a computer has a fixed amount of RAM so the demand for memory will often exceed this amount
- a designated area of secondary storage is used as if it were main memory
- some of the pages of a current process are stored in virtual memory until they are needed, at which point they are swapped into RAM
what is disk thrashing
- if many processes are running and the computer has insufficient RAM, lots of time is spent swapping pages in and out of virtual memory
- repeatedly swapping pages can noticeably slow down the computer
- this is known as disk thrashing
what are some advantages of paging
- simplified memory management means that the processor does not have to worry about physical memory addresses.
- efficient memory usage
what are interrupts
- it is vital that the CPU can be interrupted when necessary
- a signal generated by a source such as a I/O device or system software that causes a break in the execution of the current routine
- control passes to another routine in such a way that the original routine can be resumed after the interrupt
what are some examples of interrupts
- an I/O devices sends an interrupt signal
- the printer runs out of paper
- an error occurs in a program
- a scheduled interrupt from the internal clock
- power failure
how does the interrupt service routine work
- the CPU checks at the end of each clock cycle whether there are any interrupts to be processed
- when an interrupt is detected, the processor stops fetching instructions and instead pushes the current content of its registers onto a stack
- the CPU uses an interrupt service routine to process the interrupt
- when processing has finished, the values can be popped from the stack and reloaded into the CPU
what is interrupt priority
- interrupts have different priorities, and will be processed in order of priority
- interrupts can themselves be interrupted if the new interrupt has a higher priority
- if a higher priority interrupt occurs whilst an interrupt is being processed, the original interrupt’s registers will be pushed onto the stack as well
advantages of interrupts
- simplifies I/O operations by allowing devices to communicate directly with the CPU
- increases the efficiency of the CPU as there is less waiting time between tasks
- enables multitasking by allowing the CPU to switch between tasks
why does an operating system need processor scheduling
a single CPU can only process instructions for one application at a time. the OS must schedule when each application can use the CPU. this gives the illusion of multi tasking
what is the aim of processor scheduling
- to provide an acceptable response time to all users
- to maximise the time the CPU is usefully engaged
- to ensure fairness on a multi-user system
name some examples of how processor scheduling can be organised
- round robin
- first come first served
- shortest remaining time
- shortest job first
- multi-level feedback queues
how does round robin work
each job is allocated (by FIFO) a time slice during which it can use the CPU’s resources. if the job has not been competed by the end of its time slice, the next job is allocated a time slice
advantages of using round robin
- each process gets an equal share of CPU time
- cyclic = less starvation
disadvantages of round robin
- setting the time slice too short increases the overhead and lowers CPU efficiency
- setting the time slice too long may cause a poor response to short processes and RR degrades to FCFS
- average waiting time = long
how does first come first served work
the first job is executed until it completes and then moves onto the next job
advantages of FCFS
- simple and easy to understand
- fairness = all process have equal opportunity to run
- every process will eventually get a chance to execute (if the system has all the resources)
- low scheduling overhead = no frequent context switches or complex scheduling decisions
- well-suited for long-running processes or workloads without time constraints
disadvantages of FCFS
- processes with less execution time suffers
- favours CPU bound process rather than I/O
- average waiting time = long
- lower CPU and device utilization
- not suited for multiprogramming systems
how does shortest remaining time work
the time to completion is estimated when each new job arrives. the job with the shortest remaining time to completion is executed. it is pre-emptive meaning that the process being executed can be stopped to process another job with smaller remaining time
advantages of shortest remaining time
- shortest jobs are favored
- gives the minimum average waiting time for a given set of processes
disadvantages of shortest remaining time
starvation - the large jobs with the longest time to completion may never be executed as new jobs constantly flow in
how does shortest job first work
the total execution time of each job is estimated by the user. the waiting job with the smallest total execution time is executed when the current job is completed. (not pre-emptive)
disadvantages of shortest job first
- starvation if processes keep coming
- it cannot be implemented at the level of short-term CPU scheduling
how does multi-level priority queues work
multiple queues are created with different priority levels. if a job uses too much CPU time it is moves to a lower priority queue. processes can be moved to a higher priority queue if they have waited a long time
advantages of multi-level priority queues
- provides a good mechanism where the relative importance of each process may be precisely defined
- scheduling allows for the assignment of different priorities to processes based on their importance, urgency, or other criteria
disadvantages of multi-level priority queues
- if a high-priority process uses a lot of CPU time, lower-priority processes may starve and be postponed indefinitely
- deciding which process gets which priority level assigned to it
how does a distributed operating system work
an OS where the software is spread over a collection of independent, networked, communicating and physically separate nodes. coordinates the processing of a single job across multiple computers
- a program that can be run by the user that uses data or resources from any other computer
- coordinated by the OS passing instructions between computers
advantages of a distributed OS
- the user can access more computational power with the illusion of working with a single processor
- no need for training or writing programs differently
disadvantages of distributed OS
- the programmer has no control over the task distribution as this is entirely handled by OS
how does a multi-tasking OS work
a single processor can appear to do more than one task simultaneously by scheduling time
- some systems use a powerful computer = mainframe
- lots of users with their own terminals access the mainframe’s CPU and each get a time slice
- each terminal is also running multiple processes
how does a mobile OS work
- multi-tasking OS
- linked to specific hardware
- low level proprietary OS used for handling the hardware and special features
- main OS handles user interface and running applications
how does an embedded OS work
highly specialised, limited and cut down OS design to fit inside a certain type of machine whose single application is crucial to the device’s operation
- minimal features
- application programs are held in ROM
- limited amount of RAM
- user interface = simple and minimal
how does a real-time OS work
- responds in guaranteed time frame
- safety-critical environments
- ‘failsafe’ = mechanisms designed to detect and take appropriate action if hardware components fail
- incorporate redundancy - crucial components are duplicated in case one fails
what is the BIOS
basic input output system - part of the OS that handles the I/O of the computer. it enables the OS to use the particular features of the hardware being used
what does the BIOS do
- boots the computer
- initialises and tests hardware
- loads the OS into RAM
what is a device driver
a program that provides an interface for the OS to interact with a device. needed to allow OS to control hardware devices
- hardware and OS specific
- OS does not need to know the specifics of the hardware to interact with it
how can a printer interact with other pieces of hardware
the base operating system and the hardware (kernel) and the driver communicate with the operating system, which in turn manages the hardware
what is a virtual machine
software is used to emulate a machine. operated based on the computer architecture and functions of a real or hypothetical computer
- can be used for running one OS inside another to emulate different hardware
- can execute intermediate code (Java)
why does an OS need backing store management
the OS is required to keep a directory of where files are stored so they can be quickly accesses. it needs to know which areas of storage are free
why does the OS need peripheral management
different applications require different I/O devices throughout operation. the OS makes use of buffers to temporarily store this information so the CPU can continue with another task
- printer
name 4 examples of systems software
- OS
- utility programs
- library programs
- translators
name 4 examples of application software
- off-the-shelf
- custom written
- proprietary
- open source
what are utility programs
programs that aim to optimise the performance of the computer and perform useful background tasks
5 types of utility program
- disk defragmenter
- automatic backup
- automatic updating
- virus checker
- compression software
what does a disk defragmenter do
- large files stored on a magnetic hard drive may be split up across several physical disk locations
- disk defragmenter reorganises the hard drive so that files are in sequential blocks where possible
-the result is that files can be read more quickly
what does automatic backup do and why is it needed
- data in permanent (secondary) storage needs to be regularly backed up
- users may forget to do this, so the process can be automated, specifying:
1. where = portable hard drive, cloud, local server
2. when = usually when the computer is not in use
3. what = what data should be backed up
4. how = should data be compressed
what does automatic updating do and why is it needed
runs in the background detecting software update releases and automatically installing them
- some updates add new software features
- some important updates fix security issues which could otherwise be exploited by hackers
what does a virus checker do and why is it needed
scans permanent (secondary) storage for viruses by comparing files to known virus definitions
- may also scan files ‘on access’ as they are opened
- must be kept up to date with new virus definitions to be effective
how does a virus checker work
uses heuristics – it knows what types of behaviour are likely to be used by a malicious program
- heuristics can be used to guess which programs or files may contain a virus, based on their behaviour
- sometimes the virus checker will flag a harmless file as a virus
what does compression software do and why is it needed
can reduce the size of files
- to compress more than one files = zipped folder
what is application software
software that performs a task to benefit the user
what are the 3 main categories for applications
- general purpose - ready made software available to anyone to purchase is known as off the shelf software
- special purpose - performs a single specific task or set of tasks
- bespoke - custom created for a specific user, mostly used by businesses
what is open source code
allows anyone to access its source code
- licences but free to use
- anyone can modify the software and sell it, on the condition that the software produced is also open source
what is freeware
software that is free for anyone to use but the source code is not available
what is closed (proprietary) code
software does not allow access to source code
- users must pay the person or company who owns the copyright for a license to use the software
- there may be restrictions on how the software is used
features of “off-the-shelf” software
- less expensive since the cost is shared among all other people buying the package
- may contain a lot of unwanted features, and some desirable but non-essentail features may be missing
- ready to be installed immediately
- well documented, well-tested and error-free
features of bespoke software
- more costly and requires expertise to analyse document requirements
- features customised to user requirements and other features can be added as needs arise
- may take a long time to develop
- may contain errors which do not surface immediately
what 5 things need to be considered when selecting an application
- functionality
- hardware – will it run on the current hardware?
- availability – already exists or specially written?
- cost
- reliability – bugs?
what are some benefits of proprietary software
- support available from the company
- regular updates available
- technical support lines
what are the three types of translators
- assembler
- compiler
- interpreter
what is assembley code
low level language - assembly code instructions are mnemonics equivalent to machine code but easier for humans to work with
what does an assembler do
translates assembly code into machine code or bytecode
- each processor has its own instruction set and so the object code produced will be hardware specific
what is bytecode
a combination of compiled and interpreted code
what is a compiler and how does it work
a compiler translates a whole program written in a high level language into executable machine code, going through several stages.
- the object code produced is hardware specific
what is an interpreter
translates code written in a high level language (JavaScript, PHP) into machine code
- does this line by line rather than translating the whole program before any of it is executed – helps with error diagnosis
advantages of using bytecode
- platform independence
- acts an an extra security layer between the computer and program
advantages of a compiler
- object code can be saved on a disk and run whenever required without the need to recompile. however, if an error is discovered the whole program has to be recompiled
- faster to execute
- object code produced by a computer can be distributed or executed without having to have the compiler present
- object code is more secure (needs reverse engineering to view it)
= more appropriate when a program is run regularly or object code is going to be distributed
advantages of an interpreter
- platform independence = the source code can be run on any machine which has the appropriate interpreter available
- if a small error is found, there is no need to reinterpret the entire program
what are the 5 stages of complimation
- lexical analysis
- symbol table
- syntax analysis
- semantic analysis
- code generation
what happens in lexical analysis
puts each statement into the form best suited to the syntax analyser
- all unnecessary spaces and all comments are removed
- keywords, constants and identifiers are replaced with tokens representing their function in the program
- simple error-checking
what happens in the symbol table stage
- the lexer will build up a symbol table for every keyword and identifier in the program
- the symbol table helps to keep track of the run-time memory address for each identifier
how and why is a symbol table organised
- lexical analyser spends a great proportion of its time looking up the symbol table so the more organsied it is the faster compiling time is
- usually arranged as a hash table
what happens in the syntax analysis stage
language statements are checked against the rules of the language, errors being reported if a statement is not valid
- the stream of tokens from the lexing stage is split up into phrases
- each phrase is parsed which means it is checked against the rules of the language
- if the phrase is not valid, an error will be recorded
what is parsing
the task of systematically applying the set of rules to each statement to determine whether it is valid
what are the syntax rules
- the rules of the language need to be defined
- syntax rules can be drawn as a diagram
what happens in the semantic anlaysis stage
- it is possible to create a sequence of tokens which is valid syntax but is not a valid program
- semantic analysis checks for this kind of error
what happens in the code generation stage
- once the program has been checked, the compiler generates the machine code
- it may do this in several ‘passes’ over the code because code optimisation will also take place
what are the aims of code optimisation
- remove redundant instructions
- replace inefficient code with code that achieves the same result but in a more efficient way
what are the disadvantages of code optimisation
- increase complimation time
- may produce unexpected results
what is a linker and what does it do
software tool that allows already compiled object code files or modules to be combined with the compiled program. the linker needs to put appropriate memory addresses in place so that the program can call and return from a library function
what is a loader and what does it do
the job of a loader is to copy the program and any linked subroutines into main memory to run
- when the executable code was created it may assume the program will load in memory address 0
- however, memory addresses in the program will need to be relocated by the loader because some memory will be in use
what is a library
most languages have sets of pre-written (and pre-compiled) functions called libraries
- a programmer can also write their own libraries
- library functions can be called within a program
advantages of library routines
- tested and error-free
- save the programmer time as they don’t need to write code to perform common tasks