Outcome 1 Notes Flashcards
(93 cards)
What is the primary function of an operating system?
To help other computer programs work by controlling computer hardware
What is the process of bringing up the operating system called?
Booting
Where are the boot instructions stored in a computer?
BIOS chip
What is the name of the special program that the BIOS uses to start the operating system?
Boot loader
What are the two main boot loaders used in Linux?
- Grub2
- LILO
What does the boot loader do?
Locates and loads the actual operating system into memory
What is the first stage of the boot process called?
Run level 1
What is the process ID of the init process?
1
What is the role of the init process?
Starts the rest of the services via sysV and other startup scripts
What command can be used to see information about currently loaded kernel modules?
lsmod
Which command is used to load a single kernel module into the kernel?
insmod
Which command is preferred for loading kernel modules due to its dependency management?
modprobe
What is a daemon in the context of the init process?
A program that operates in the background waiting for tasks
What does the X server manage?
Display, keyboard, and mouse
What is the purpose of a bootloader?
Runs when the computer is turned on to load the operating system
What are the two versions of GRUB?
- GRUB Legacy
- GRUB 2
What file is used to configure LILO?
/etc/lilo.conf
What does the ‘boot=’ line specify in the lilo.conf file?
Where to install the bootloader
What does the ‘timeout=’ line in lilo.conf control?
How long to wait at the prompt before booting the default OS
Where is the GRUB configuration file located?
/boot/grub/grub.cfg
What does the line ‘default=0’ in the GRUB configuration file indicate?
The first operating system listed will be booted
Fill in the blank: The Linux kernel is regarded as the _______.
[operating system proper]
True or False: The Linux kernel handles hardware through kernel drivers.
True
What is autoprobing in the context of the Linux kernel?
Locating I/O ports and adapting to available hardware