Boot Process Flashcards

1
Q

The BIOS reads the MBR and then loads the ________

A

boot loader

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

The boot loader loads the _____ and _____ image into memory

A

The boot loader loads the Linux Kernel and initrd image into memory

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

the boot loader turns control of the boot process to the _______.

A

Kernel

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

The kernel is located in the ______ directory.

A

/boot

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

the kernel is referenced in the _______ file.

A

/boot/vmlinuzz

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

the drivers are part of the _____.

A

kernel

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

The ________ is a cpio archive that the kernel can load into a ramdisk.

A

initramfs (Initial RAM File System)

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

initramfs modules are listed in the _______ variable in ________.

A

INITRD_MODULES, /etc/sysconfig/kernel

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

to rebuild initramfs, use the command _____.

A

mkinitrd

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

After checking partitions and mounting the root file system, init starts ______.

A

/sbin/init

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

_______ boots the system and loads all of the services and programs configured for the system.

A

/sbin/init

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

_____ always has a process ID number of 1.

A

/sbin/init

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

the configuration for init is located in _____.

A

/etc/inittab

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

Once the init process starts, it runs the _____ script, which completes initialization tasks such as setting disk quotas and mounting local file systems.

A

/etc/init.d/boot

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

After the boot script (/etc/init.d/boot) init starts the ______ script. (uses runlevel configuration to start services and daemons.

A

/etc/init.d/rc

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

This script uses your runlevel config to start services and daemons.

A

/etc/init.d/rc

17
Q

Space on the MBR is limited to _____ bytes.

18
Q

The two boot loaders included with SUSE are:

A

GRUB (GRand Unified Bootloader) and LILO (LInux LOader)

19
Q

Stage 1 of GRUB is located:

A

in the MBR of the hard disk or the boot sector, or a floppy.

20
Q

Stage 2 of GRUB is located in:

A

the /boot/grub/ directory.

21
Q

Maps and map files are used for

A

noting physical block numbers that comprise the logical files.

22
Q

The _____ boot loader relies entirely on maps.

23
Q

The _____ boot loader has file system support

24
Q

to find which partition contains the kernel, use the ___________ command.

A

find /boot/vmlinuz

25
To access the GRUB shell from the text-based menu:
type the character "c"
26
The GRUB boot manager config file is located in:
/boot/grub/menu.lst
27
to configure GRUB with YaST in the GUI use the command:
yast2 bootloader
28
To access the bootloader in the YaST GUI, navigate to
System > Boot Loader
29
You can change the first program loaded by the kernel by entering:
init=
30
To get bash shell access from the boot loader, enter
init=/bin/bash
31
After booting into the shell from GRUB, the file systems are mounted as read-only. To fix this, remount the file system with ________.
mount -o remount,rw,sync -t filesystem_type device_name mountpoint
32
the ____ parameter can be used in the /boot/grub/menu.lst file to force the password query before the GRUB title entries can be selected
lock