Lesson Objectives Aims Key Words

Slides:



Advertisements
Similar presentations
FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5.
Advertisements

The Operating System. What is an Operating System? The program that is loaded first and manages the hardware resources like main memory, backing storage.
1 Web Server Administration Chapter 3 Installing the Server.
Chapter 6 - Implementing Processes, Threads and Resources Kris Hansen Shelby Davis Jeffery Brass 3/7/05 & 3/9/05 Kris Hansen Shelby Davis Jeffery Brass.
Cambodia-India Entrepreneurship Development Centre - : :.... :-:-
Installing software on personal computer
LECTURE 14 Operating Systems and Utility Programs
Virtual Network Servers. What is a Server? 1. A software application that provides a specific one or more services to other computers  Example: Apache.
Using Virtualization in the Classroom. Using Virtualization in the Classroom Session Objectives Define virtualization Compare major virtualization programs.
Tanenbaum 8.3 See references
Computer Concepts 2013 Chapter 4 Operating Systems and File Management.
By the end of this lesson you will be able to explain: 1. What is the BOOT process 2. A Cold Boot 3. A Warm Boot.
Computer Maintenance Unit Subtitle: Basic Input/Output System (BIOS) Excerpted from 1 Copyright © Texas Education Agency, All.
A+ Guide to Managing and Maintaining Your PC Fifth Edition Chapter 14 Managing and Troubleshooting Windows 2000.
Using Virtualization in the Classroom. Using Virtualization in the Classroom Session Objectives Define virtualization Compare major virtualization programs.
BIOS. Accessing System BIOS You can use the System Setup utility to change variable BIOS information, such as the type of hard drive you have installed.
Hardware Boot Sequence. Vocabulary BIOS = Basic Input Output System UEFI = Unified Extensible Firmware Interface POST= Power On Self Test BR = Boot Record.
System Software Provides GUI Manages the resources of the computer system Defines the Software Platform Components of System Software Operating system.
© 2015 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
Software Grade 10. BIOS and the Power-on Self Test A computer can’t do much without instructions The first thing the CPU does when you switch it on is.
POST and The Boot Process
Computer Maintenance I
Cloud Computing – UNIT - II. VIRTUALIZATION Virtualization Hiding the reality The mantra of smart computing is to intelligently hide the reality Binary->
Computer Technician POST and The Boot Process ©UNT in Partnership with TEA1.
This courseware is copyrighted © 2016 gtslearning. No part of this courseware or any training material supplied by gtslearning International Limited to.
Course 03 Basic Concepts assist. eng. Jánó Rajmond, PhD
OPERATING SYSTEMS DO YOU REQUIRE AN OPERATING SYSTEM IN YOUR SYSTEM?
CT101: Computing Systems Introduction to Operating Systems.
Virtualization - an introduction Gordon Ross Computing Service.
Using Virtualization in the Classroom
Tech Level Cyber Security
Software.
Computers: Tools for an Information Age
Nat 4/5 Computing Science Software
An Introduction to Operating Systems
Chapter Objectives In this chapter, you will learn:
Chapter 6: BIOS.
Operating System Review
CS101 Booting A Computer.
Operating Systems and Utility Programs
Chapter 5: Using System Software
Lesson Objectives Aims Key Words
Computer Maintenance Unit Subtitle: Basic Input/Output System (BIOS)
Computer Software.
Building a Virtual Infrastructure
Operating System Structure
FIRMWARE PPT By:Hanh Nguyen.
TOPIC 6: SYSTEM START-UP AND CONFIGURATION
Chapter 4 – Introduction to Operating System Concepts
Computer System Structures
TexPREP Summer Camp Computer Science
Introduction to Computers
CS101 Booting A Computer.
Operating System Review
Starting the computer. Every day we are using an operating system and most specifically a Windows operating system but most of us are not aware of the.
Device management How does the operating system manage the hardware and peripheral devices? Device Driver: Each device is attached to your computer with.
Lesson Objectives Aims Key Words Compiler, interpreter, assembler
Chapter 3 Hardware and software 1.
Partition Starter Find out what disk partitioning is, state key features, find a diagram and give an example.
Chapter 3 Hardware and software 1.
BIOS Chapter 6.
CS101 Booting A Computer.
2.C Memory GCSE Computing Langley Park School for Boys.
Outline Chapter 2 (cont) OS Design OS structure
Modern PC operating systems
TPM, UEFI, Trusted Boot, Secure Boot
Introduction to Computing
CS101 Booting A Computer.
Motherboard BIOS and Troubleshooting
The bios.
Presentation transcript:

Lesson Objectives Aims Key Words Be able to describe the role and purpose of the BIOS Understand the role of drivers in a computer system Understand how virtual machines work and the need for virtualisation Key Words

The boot process Power on Bios Boot loader Kernel / Drivers Desktop

BIOS steps BIOS is loaded from ROM CPU begins executing instructions Power on BIOS is loaded from ROM CPU begins executing instructions POST Power On Self Test Scans for (enumerates) and initialises hardware Looks for hardware changes Performs basic tests (does not guarantee function) Boot Loader Selects the first boot device based on information collected in the POST. Tries the boot loader of that device and, if successful, runs the OS. Moves on to the next boot device if unsuccessful. Repeats until all boot devices have been tried. If no boot devices have suitable boot loaders, the system will stop.

BIOS First widely used in the early 1980’s A 16 Bit system Meaning processors have to “emulate” 16 bit mode at power on! Can only access 1mb RAM Limited functionality 2TB disc limit No support for security etc

The BIOS includes: A configuration utility Saved pointers to the location of boot devices in order of preference. BIOS will attempt to read the boot sector (usually the first sector on a disc), if this is valid it usualy points to the boot loader which loads the operating system.

UEFI

UEFI An OS in its own right A “firmware” rather than BIOS Extensible and modular Support for secure boot Support for absurdly large discs (billions of GB’s) Easier integration with OS’s – change configurations without booting Can access and store data in an EFI disc partition Used by all new PC’s and Macs (since 2008)

VM’s Computers are now incredibly well resourced Sales of PC’s have fallen away, in part due to the fact there is no longer a 1-2 year upgrade need This power brings with it the opportunity to consolidate hardware, especially in a server environment

Virtualisation: The emulation of generic PC hardware, through software “Virtualised” systems believe they have sole access to the resources allocated to them OS’s and software is installed exactly as normal Generic drivers/hardware mean degraded performance in some application

Server side Machines can be: Cloned Multiple VM’s on one single physical machine Managed separately Repaired/maintained without affecting other services Snapshotted – much easier recovery/backup This makes greater use of hardware resources – rarely is a server at 100% load.

Drivers Drivers are software that allow hardware resources to function with the operating system. Why are drivers necessary?

Drivers Allow operating systems to be “extended” to work with a wide ranger of peripherals Responsibility on manufacturers to provide stable code and feature implementation Removes OS complexity Modularity

Review/Success Criteria You should know: The boot process in a PC The purpose of the BIOS Features of BIOS The differences between BIOS and UEFI The need for UEFI What virtualisation is Why it is useful in a server setting What drivers are