LFS101x Flashcards

(43 cards)

1
Q

When was Linux’ inception?

A

1991

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

The world’s largest and most pervasive open source software project in history

A

Linux

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

What does the Linux Foundation do?

A

Partners with the world’s leading developers and companies to solve the hardest technology problems and accelerate open technology development and commercial adoption

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

Who is the creator of Linux?

A

Linus Torvalds as a student in Helsinki, Finland, in 1991

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

The three major families of Linux distributions?

A
  1. ) Red Hat (including CentOS, Fedora, Oracle Linux)
  2. ) SUSE (including openSUSE)
  3. ) Debian (including Ubuntu and Linux Mint)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which distribution is used as a testing platform for future RHEL releases?

A

Fedora

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

The most popular Linux distribution in enterprise environments?

A

RHEL (Red Hat Enterprise Linux)

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

The basic version of what distribution is also virtually identical to RHEL?

A

CentOS

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

Which distribution provides by far the largest and most complete software repository to its users of any Linux distribution?

A

Debian

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

Which distribution is a pure open source community project? (Not owned by any corporation)

A

Debian

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

What is a LTS version of a distribution?

A

Long term support

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

This distribution is widely used for cloud deployments

A

Unbuntu

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

The umbrella organization for many critical open source projects that power corporations, spanning all industry sectors

A

The Linux Foundation

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

The original operating system Linux was developed for?

A

Intel x86-based personal computers

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

Linux borrows heavily from which well-established operating system?

A

UNIX

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

The core of the operating system

A

The Linux Kernel

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

What does a full Linux distribution consist of?

A

The kernel plus a number of other software tools for file-related operations, user management, and software package management

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

Why might a Linux distribution use an older version of the kernel?

A

It’s extremely stable

19
Q

The procedure for initializing the system

A

The Linux boot process

This consists of everything from when the power is first switched on until the user interface is fully operational

20
Q

Steps in the boot process

A
  1. Power On
  2. BIOS
  3. Master Boot Record (MBR)
  4. Boot Loader (e.g. GRUB)
  5. Kernel
  6. Initial RAM disk (initramfs)
  7. /sbin/init
  8. Command Shell Using Getty
  9. X-Windows System (GUI)
21
Q

What does BIOS stand for?

A

Basic Input/Output System

22
Q

Where is the BIOS software is stored?

A

On a Read-Only Memory (ROM) chip on the motherboard

23
Q

What happens when the computer is powered on?

A

POST (Power On Self Test)

24
Q

What happens during POST (Power On Self Test)?

A

The BIOS initializes the hardware, including the screen and keyboard, and tests the main memory

25
Once the POST is completed what happens?
The system control passes from the BIOS to the boot loader (GRUB)
26
Where is the boot loader is usually stored?
The boot sector (for traditional BIOS/MBR systems) The EFI partition (for more recent (Unified) Extensible Firmware Interface or EFI/UEFI systems)
27
Where is information on date, time, and the most important peripherals loaded from?
CMOS - A battery-powered memory store which allows the system to keep track of the date and time even when it is powered off
28
The most common boot loaders?
GRUB (for GRand Unified Boot loader) ISOLINUX (for booting from removable media) DAS U-Boot (for booting on embedded devices/appliances)
29
What is the boot loader responsible for loading?
The kernel image and the initial RAM disk or filesystem This contains some critical files and device drivers needed to start the system
30
For systems using the BIOS/MBR method where does the boot loader reside?
The first sector of the hard disk, also known as the Master Boot Record (MBR)
31
What is the size of the Master Boot Record (MBR)?
512 bytes
32
What are the two distinct stages of the boot loader? (BIOS/MBR)
1. ) The boot loader examines the partition table and finds a bootable partition 2. ) Then it searches for the second stage boot loader (GRUB), and loads it into RAM
33
What are the two distinct stages of the boot loader? (EFI/UEFI)
1. ) UEFI firmware reads its Boot Manager data to determine which UEFI application is to be launched and from which disk and partition the EFI partition can be found 2. ) The firmware then launches the UEFI application (GRUB) as defined in the boot entry in the firmware's boot manager
34
Where does the second stage boot loader reside?
/boot
35
What happens when the second stage boot loader is run?
1. ) A splash screen is displayed, which allows us to choose which operating system (OS) to boot 2. ) The boot loader loads the kernel of the selected operating system into RAM and passes control to it 3. ) The kernel uncompresses itself 4. ) The kernel checks and analyzes the system hardware and initializes any hardware device drivers built into the kernel
36
What contains programs and binary files that perform all actions needed to mount the proper root filesystem?
The initramfs filesystem image
37
This program instructs the operating system that a filesystem is ready for use
mount
38
This handles the mounting and pivoting over to the final real root filesystem
init
39
What starts a number of text-mode login prompts?
init
40
How can the terminals which run the command shells be accessed?
Using the ALT key plus a function key Within a graphical environment, switching to a text console requires pressing CTRL-ALT + the appropriate function key (with F7 or F1 leading to the GUI)
41
What does bash stand for?
Bourne Again Shell by GNU
42
What happens when the kernel is loaded in RAM?
It immediately initializes and configures the computer’s memory and also configures all the hardware attached to the system
43
What is init responsible for?
1. ) Starting the system 2. ) Keeping the system running 3. ) Shutting it down cleanly