prep for training Flashcards
BIOS
a set of computer instructions in firmware which control input and output operations.
EPROM
Eraseable Programable Read Only Memory
a read-only memory whose contents can be erased by ultraviolet light or other means and reprogrammed using a pulsed voltage.
USB
Universal Serial Bus
technology used to connect computers with peripheral devices
Serial Port
a connector by which a device that sends data one bit at a time may be connected to a computer. (monitor port)
RS-232
Form of Serial Data transmission, or ‘Serial Connection’.
more or less replaced by USB connections now, but not complletely.
delivers data as voltage signals.
Parallel Port
a connector for a device that sends or receives several bits of data simultaneously by using more than one wire.
looks like the winder RS-232
(U)EFI
UEFI is a set of specifications written by the UEFI Forum. They define the architecture of the platform firmware used for booting and its interface for interaction with the operating system
actively replacing BIOS
Boot Loader
a program that loads an operating system when a computer is turned on.
computer program responsible for booting a computer. When computer turns off, its software—operating systems, application code, and data—remains stored on non-volatile memory.
GRUB/LILO
GRUB: new boot loader with multi-OS device management. supports Windows, Linux, UNIX, macOS, BSD, and Solaris.
LILO: older boot loader with single OS device management. Only supports Linux.
ATAPI
Advanced Technology Attatchment Packet Interface
ATA Packet Interface is a protocol that has been added to Parallel ATA and Serial ATA so that a greater variety of devices can be connected to a computer than with the ATA command set alone. It carries SCSI commands and responses through the ATA interface.
SATA
Serial Advanced Technology Attachment
refers to a type of connector cable that is used to attach components, like hard drives, to a motherboard. A solid-state drive (SSD) is a type of storage drive that allows for very fast read and write speeds. Comparing the drive type with a type of connector cable does not really make sense.
Master Boot Recorder
The Master Boot Record (MBR) is the information in the first sector of a hard disk or a removable drive.
Identifies how and where the system’s operating system (OS) is located in order to be booted (loaded) into the computer’s main storage or random access memory (RAM).
RAM
Form of computer memory that can be read and changed in any order, typically used to store working data and machine code.
ROM
Read-only memory is a type of non-volatile memory used in computers and other electronic devices. Data stored in ROM cannot be electronically modified after the manufacture of the memory device.
CPU
The component of a computer system that controls the interpretation and execution of instructions. The CPU of a PC consists of a single microprocessor, while the CPU of a more powerful mainframe consists of multiple processing devices, and in some cases, hundreds of them.
CPU cache
Store temporary files, using hardware and software components. An example of a hardware cache is a CPU cache. This is a small chunk of memory on the computer’s processor used to store basic computer instructions that were recently used or are frequently used.
MTBF
How is MTBF defined?
Mean time between failures (MTBF) is the average time between system breakdowns. Mean time between failures is a crucial maintenance metric to measure performance, safety, and equipment design, especially for critical or complex assets like generators or airplanes.
Binary / Octal / Hex
Swap File
What is a swap file (swap space or page file)? A swap file is a system file that creates temporary storage space on a solid-state drive or hard disk when the system runs low on memory. The file swaps a section of RAM storage from an idle program and frees up memory for other programs.
A swap file allows Linux to simulate the disk space as RAM. When your system starts running out of RAM, it uses the swap space to and swaps some content of the RAM on to the disk space. This frees up the RAM to serve more important processes. When the RAM is free again, it swaps back the data from the disk.
Virtual Memory
Common technique used in a computer’s operating system. Uses both hardware and software to enable a computer to compensate for physical memory shortages, temporarily transferring data from random access memory (RAM) to disk storage.