Booting Flashcards

(11 cards)

1
Q

Stages of booting:

A
  1. Firmware
  2. Boot loader
  3. Operating system
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Firmware

A
  • When we turn on the power of a computer, the CPU will start
    to execute instructions on a well defined address.
    – The motherboard is built in such a way that the CPU will find a
    pre-installed program in a read-only or flash memory (ROM).
    – This program is called the firmware of the system but is often
    referred to as the BIOS (Basic Input/Output System) since this
    was the name used on IBM compatible PCs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The role of the firmware

A

The role of the firmware is to :
- detect memory
modules and external devices,
- set clock speeds
and monitor fans,
- perform a system test to verify
that all hardware is functioning (Power-On Self
Test (POST)) etc.

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

MBR

A

– When the BIOS has performed the initial testing of the
system it will locate the primary disk and read the first
segment of 512 bytes.
– This segment is called the Master Boot Record (MBR).
– The BIOS does not know anything about file systems so
one can only place the master boot record at a well
defined position on disk.
– The master boot record is a very small program that will
almost immediately start to read a larger program from
disk.

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

Boot loader

A

– The master boot record is a very small program that will
almost immediately start to read a larger program from
disk.
* This could be an embedded program or an operating system but
in most cases it is something called a boot loader
- The boot loader (also called boot manager) is
generally a small program that places the operating
system of a computer into memory or RAM.

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

Boot loader focuses on

A

It focuses on loading and starting the boot-time
tasks and processes found within the operating
system.

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

Once the boot loader has determined which
operating system to start, …

A
  • Once the boot loader has determined which
    operating system to start, it will read the kernel
    from disk and jump to its first instruction.
    – Once this is done, the operating system will take
    control.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Operating System

A

– The operating system will start by taking control
over the hardware.
– It will move to 64-bit mode (if that is not already
done), create a stack, set up the interrupt
descriptor table, initialize virtual memory etc.
– It will then organize the task scheduler, the file
system and hundreds of other things before it
launches services for users to access

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

Types of Booting

A

– Cold Booting
– Warm Booting

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

Cold Booting

A

– A cold boot is also called a hard boot.
– It is the process when we first start the computer.
– In other words, when the computer is started from
its initial state by pressing the power button it is
called cold boot.
– The instructions are read from the ROM and the
operating system is loaded in the main memory

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

Warm Booting

A

– Warm Boot is also called soft boot.
– It refers to when we restart the computer.
– Here, the computer does not start from the initial
state.
– When the system gets stuck sometimes it is
required to restart it while it is ON.
– Therefore, in this condition, the warm boot takes
place.
– Restart button or CTRL+ALT+DELETE keys are used
for warm boot

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