LPI Certification Linux Flashcards
What does “BIOS” stand for?
Basic Input/Output System.
What is BIOS?
Firmware located in a PC on the motherboard, used for bringing all of the system hardware to a state ready to boot an operating system.
What the role of the BIOS?
A. System initialization B. Memory and device testing C. Locates an operating system to run. D. Provides a low level interface to allow the user to choose other boot devices and hardware resources.
Where does the BIOS reside?
On the Motherboard of the PC in ROM (Read Only Memory), typically in an EEPROM, (electronically erasable progammable read-only memory).
Give a few examples of the devices that can be initialized or set through the BIOS?
A. The system clock, B. Disks and boot devices, (such as CD-ROMs, Floppy disk, hard disks, zip or jazz drives, NIC, etc). C. Interrupts D. DMA (Direct Memory Access) channels.
What steps does the BIOS process take when starting?
- Power-On self-test (POST) 2. initializes hardware to a known operational state. 3. Load the boot loader from the boot device, (typically the first hard disk). 4. Passes control to the boot loader, (which loads the OS).
What is the BIOS services “not” used for in a Linux environment?
It does not use BIOS services for I/O.
What is the RTC?
Real-Time Clock, it is the battery powered clock used to keep track of time when the system is powered off.
What is CMOS?
Complementary Metal Oxide Semiconductor clock (or the RTC).
What is the system clock?
The system clock or “software clock”, uses the timer interrupt to maintain a software counter.
Which clock does the Linux kernel use to keep track of time?
A. RTC, (real-time clock) B. System clock, (software clock).
Which clock does the “date” command use to display date and time?
A. RTC, (real-time clock) B. System clock, (software clock).
Which command is used to read and write the RTC (Real-Time Clock) from within Linux?
hwclock
What is another name for a system interrupt?
IRQ
What are electrical signals sent to the PC’s microprocessor, instructing it to stop it’s current activity and respond to an asynchronous event?
Interrupts