• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/46

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

46 Cards in this Set

  • Front
  • Back
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?
1. 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).
B. System Clock
Which clock does the "date" command use to display date and time?
A. RTC, (real-time clock)
B. System clock, (software clock).
B. System 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
What is another name for the microprocessor memory map?
I/O addresses?
What is an I/O address?
A list of defined memory addresses reserved for input/output devices.
What is the capabilities of a DMA device.
Is a device that has direct access to memory and writes it own data without using the microprocessor.
What does DMA stand for?
Direct Memory Access
How does DMA work?
DMA allows DMA capable devices to work directly with memory through a DMA channel, freeing the microprocessor for other tasks.
What standard IRQ assignment for ttyS0, (COM1)?
4
What is the standard IRQ assignment for ttyS1, (COM2)?
3
What standard IRQ assignment for ttyS2, (COM3)?
4
What standard IRQ assignment for ttyS3, (COM4)?
3
What standard IRQ assignment for lp0, (LPT1)?
7
What standard IRQ assignment for lp1, (LPT2)?
5
What standard IRQ assignment for fd0,fd1, (floppies 1 and 2)?
6
What standard IRQ assignment for fd2,fd3, (floppies 3 and 4)?
10
Some older PC audio devices may conflict with IRQ 5 if more than one ______ ____ are configured?
parallel ports
The most important thing to remember when configuring system resouces is?
To avoid conflicting settings.
Where is the data located for BIOS to boot the operating system?
At the beginning of the disk in the MBR (Master Boot Record).
Linux can place the boot loader in either one of 2 places, where can the boot loader be placed?
In either the MBR (Master Boot Record) or root partition.
What is CHS?
Cylinder/head/sector geometry.
What is LBA?
Logical Blocking Addressing mode, (or Linear block addressing).
What types of disks are not normally detected by the BIOS?
SCSI and ATA. These disks are handled by supplementary BIOSes assocated with the controller for these devices.
Hard disks are broken into _____s, which are broken into ______s.
tracks and sectors.
LILO and kernels on Linux should be installed below cylinder ____ on larger disks.
1024
fdisk utility is used to ?
partition the hard drive.
What does PnP stand for?
Plug and Play.
What is the purpose of PnP?
To create jumperless ISA cards that could be automatically configured by the OS's drivers.
What are the 2 mechanisms used in Linux to configure PnP cards?
"in-kernel support" and "isapnp" utilities.
In what file are the interrupts usually located?
/proc/interrupts
What type of filesystem is /proc?
virtual filesystem
What is the best way to view /proc/interrupts?
use "cat"
What types of information are found in the files from /proc?
Information about hardware, running processes, etc..
Which interrupt is the most command cause of problems?
IRQ 5 because it is the default value for sound cards and the 2nd parallel port.