Linux CH2 Flashcards
(39 cards)
what is Preboot eXecution Environment (PXE)
A standard that allows computers to boot from installation media hosted on a network server. (PXE), commonly referred to as ‘pixie’, is a means to boot from a Network Interface Card (NIC) to the network. Once booted, the Dynamic Host Configuration Protocol (DHCP) Server gives an IP Address to it.
Nearly all Linux distributions provide a website from which you can download DVD images, called:
(ISO images) that have an .iso file extension
virtualization software (also called a hypervisor) is commonly used to:
run multiple operating systems (called virtual machines) concurrently on server hardware. You can also use virtualization software to run multiple operating systems concurrently on a workstation.
What are some examples of workstation-focused virtualization software products
Microsoft Hyper-V, Oracle VM VirtualBox, Universal Turing Machine (UTM), Parallels Desktop, VMWare Workstation Pro.
How can access your BIOS configuration?
by pressing the appropriate manufacturer-specific key, such as F10, during system startup.
what is (LUKS)?
Linux Unified Key Setup: is a disk encryption specification. LUKS is the standard for Linux hard disk encryption.
Hard disk drive or SSD is divided into sections called:
partitions. (A physical division of a hard disk drive or SSD.)
.
What is a filesystem.
A structure that specifies how data should physically reside in the partition on the hard disk drive or SSD. (The organization imposed on a physical storage device that is used to manage the storage and retrieval of data by block.)
What is a primary partition
A primary partition is a partition on which you can install an operating system. A primary partition with an operating system installed on it is used when the computer starts to load the OS. On hard disk drives and SSDs that store partition configuration in a Master Boot Record (MBR), you can create a maximum of four major partitions
What are logical drives?
A smaller partition contained within an extended partition on an MBR-based hard disk drive or SSD. (You can optionally label a primary partition as “extended”; this extended partition can then contain an unlimited number of smaller partitions called logical drives.)
What are namespace divisions?
A major section of an NVMe SSD that can be partitioned.
What is the highest (top-most) directory in the filesystem hierarchy?
The /root directory: /root
what is journaling?
Journaling in Linux is a file system feature that uses a log to track changes to a file system, which improves the system’s reliability and crash recovery.
What is zswap?
A Linux kernel feature that creates virtual memory in a compressed area of RAM.
What command is used to set a valid password for the root user following installation?
the ‘sudo password root’ command
What is the channel that allows a certain user to log in and communicate with the kernel via a user interface?
terminal
After you log in to a terminal, you receive a user interface called a:
shell (A user interface that accepts input from the user and passes the input to the kernel for processing.)
The shell that is used by default on most Linux systems is the:
BASH shell. (short for Bourne Again Shell)
What does (GDM) stand for?
The GNOME Display Manager (GDM) is a program in Linux that manages graphical logins and X servers for local and remote users. (Logins: GDM is responsible for logging users into the system and starting their sessions.)
When using a command-line terminal, the _____ ultimately interprets all information you enter into the command line.
shell
What are specific letters that start with a dash (-) and appear after the command name to alter the way the command works?
Options. (A part of a command that alters the way the command works. Options are represented by one or more letters that starts with a dash (-) or a word that starts with two dashes.)
What are POSIX options?
Portable Operating System Interface (POSIX). Are options start with two dashes (–). these options are usually composed of a whole word, not just a letter.
What are Arguments?
The text that appears after a command name, does not start with a dash (-), and specifies information that the command requires to work properly.
What does the Ls command do?
The ls command in Linux lists files and directories in a specified directory.