OS topic 17 – Booting and configuration Flashcards
Booting
With the power to a computer turned off, the processor is not running and the OS only exists as a collection of f_______ on s__________ storage such as a hard disk.
files
secondary
Booting
The boot process proceeds in a number of stages.
The very first code that runs when the processor is first turned on cannot be stored on a hard disk or other secondary storage.
Instead it must be f________: software that is stored in non-volatile chips and therefore exists somewhere on the boundary between hardware and software.
firmware
Booting
The ‘boot code’ code is responsible for initializing the h_________ and loading the o__________ s__________ into the computer’s memory.
hardware
operating system (OS)
Booting
On older computers, the firmware that controlled the boot process was called the BIOS.
What does BIOS stand for?
The B_____ I_______/O________ S________
Basic Input/Output System
Booting
On newer machines, the firmware is now the UEFI.
What doe UEFI stand for?
The U_________ E________ F_______ I__________
Unified Extensible Firmware Interface
BIOS
BIOS was originally included in ROM (read-only memory) chips soldered onto motherboards; why was it later on included on flash memory chips?
So that it could be updated id necessary.
BIOS
True or false
The BIOS is the second software to run when power is applied to a processor.
False - it is the first!
BIOS
The BIOS first performs a power-on self-test to check for the presence of basic h__________ – disk drives, keyboard, display – and i____________ it.
hardware
initialises
BIOS
The BIOS then loads and runs a bootloader program which in turn tries to find, load and run a full o________ s___________.
operating system
BIOS
Personal computers have moved from using BIOS to UEFI as the main booting firmware because UEFI offers better support for modern h________.
hardware
UEFI
True or false?
Nearly all personal computers now use UEFI instead of BIOS for booting.
True
UEFI
UEFI has advantages over BIOS including a more powerful pre-operating system environment, some network capabilities and a function called ‘s_______ boot’ which can help prevent malware from tampering with the boot process.
secure
Configuration files
There is a need for storing information that can be used to configure the parameters and initial settings of many computer applications, including the operating system, system utilities and user applications.
The simplest method is to store information in c_____________ files, which are often just p______ t_______ files.
Configuration files
plain text files
Configuration files
Typically, the filenames have extensions such as .conf, .ini or .cfg.
True or false:
Such files can be viewed – and if necessary edited – with a simple text editor or word processor.
True
Configuration files
The Windows OS has a different approach to dealing with configuration data, called the r_______.
registry