Sec. 37 System Startup and Shutdown Flashcards
- what is the first step in the basic boot sequence?:
- the BIOS / UEFI locates and executes the boot program or boot loader .
- what is the second step in the basic boot sequence?
- The boot loader loads the kernel.
Name the third step in the basic boot sequence?
- The kernel starts the init process (pid = 1).
What is the 4th step in the basic boot sequence?
- the init manages system initialization, using systemd or the older Upstart and SysVinit startup scripts.
-
Education:
- When the power is applied to the computer, the computer can only perform the operations the BIOS orders it to do so.
-
Education-
- 1. the bios runs a POST( Power on Self test), which checks the memory and hardware and then searches a specific location or device for a boot program . —-Typically the boot program is found in the device’s MBR( Master Boot Record).
- 2. Control of the computer is then transferred to this boot program(usually GRUB).
- 3.The boot program then loads the kernel into memory and executes it. —-on x86 platforms(and many others) , the kernel first has to decompress itself in place.
- 4. Then the kernel performs hardware checks , gains access to important peripheral hardware and eventually runs the init process.
What does BIOS stand for?
Basic input Output system.
Where is the boot loader loaded from?
the MBR or Master Boot Record
the BIOS is typically place in a _________?
ROM chip, that comes with the computer.
On the x86 structure, the bios contains all the code required to gain initial access to the _______, ______ ______,______ ___________, ____________?
- keyboard,
- display screens,
- disk drives,
- serial communications,
- and a number of miscellaneous functions.
During the boot process the BIOS loads the _________?
boot loader .
What does GRUB stand for?
GRand Unified Boot Loader
`Is efibootmgr a boot loader?
- NO,
- It is a boot manager. It works in conjunction with GRUB on a Multi-boot EFI systems
what does LILO stand for and what is it?
- LILO stands for The Linus Loader,
- It is old and obsolete.
What boot loader is most popular for embedded system?
Das U-Boot
Name some of GRUB’s Features .
- ability to boot mulitple operation systems
- has both a graphical and a text-based interface allowing ease of use over a serial cable.
- a powerful command line interface for interactive configuration
- Network-based diskless booting
- and other advanced features .