OS topic 17 – Booting and configuration Flashcards

1
Q

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.

A

files
secondary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

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.

A

firmware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Booting

The ‘boot code’ code is responsible for initializing the h_________ and loading the o__________ s__________ into the computer’s memory.

A

hardware
operating system (OS)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

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________

A

Basic Input/Output System

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Booting

On newer machines, the firmware is now the UEFI.

What doe UEFI stand for?

The U_________ E________ F_______ I__________

A

Unified Extensible Firmware Interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

BIOS

BIOS was originally included in ROM (read-only memory) chips soldered onto motherboards; why was it later on included on flash memory chips?

A

So that it could be updated id necessary.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

BIOS

True or false
The BIOS is the second software to run when power is applied to a processor.

A

False - it is the first!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

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.

A

hardware
initialises

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

BIOS

The BIOS then loads and runs a bootloader program which in turn tries to find, load and run a full o________ s___________.

A

operating system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

BIOS

Personal computers have moved from using BIOS to UEFI as the main booting firmware because UEFI offers better support for modern h________.

A

hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

UEFI

True or false?
Nearly all personal computers now use UEFI instead of BIOS for booting.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

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.

A

secure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

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.

A

Configuration files
plain text files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

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.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Configuration files

The Windows OS has a different approach to dealing with configuration data, called the r_______.

A

registry

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Configuration files

The registry is a central database of c________ information, implemented in such a way that looking up information is much faster than searching text files.

A

configuration information

17
Q

Configuration files

You should always be careful when modifying configuration files as the changes can have a significant impact on how the o________ s________ or a_______ s__________ runs.

A

operating system
application software

18
Q

System logs

Sometimes things go wrong. In the context of an operating system, problems can range from h________ problems through to the computer running low on memory. U______ might try to perform actions that are not allowed, or that fail.

A

hardware
users

19
Q

System logs

For system administrators, it is extremely useful to have a record of operating system events.
By logging any e________, warnings or informational events that have occurred, an administrator can later review all of this data to troubleshoot any problems that arise.

A

errors

20
Q

System logs

True or false?
Most operating systems keep such logs.

A

False - All OS’ keep such logs

21
Q

System logs

True or false?
Linux logs are kept in /var/log.

A

True

22
Q
A