Chapter 2 Flashcards
(45 cards)
What is a Hardware Compatibility List (HCL) and where can you find it?
identifies whether the computer and hardware have Linux driver support. Many Linux distribution websites and manufacturer websites contain this list.
Installation Media (ISO Image)
- Standard DVD ISO image
- Live Media DVD/USB ISO image
- Virtual Machine Host ISO image
Most commonly a DVD. Most computers check the DVD for a startup program immediately after being turned on. ISO file can be written onto a DVD and downloaded from the OS distributor website.
r
Can USB drive be used to boot and install OS?
Yes, provided the computer allows booting from a USB drive.
Live Media image
Live Media image can be used on a DVD/USB. When the computer boots live media a fully functional OS will be loaded into the RAM. This a great way to test all hardware drivers were detected correctly prior to installing it to permanent storage.
Virtualization Software
Runs multiple OS concurrently. Ex: Microsoft Hyper-V, VMWare, Oracle VM VirtualBox
virtual machine
a name for each OS that is run within virtualization software.
Virtual Machine Host
the underlying OS running the virtualization software
Explain how to install Linux as a virtual Machine
Download the Standard DVD or Live Media DVD ISO image to a directory on your virtual machine host. When running the virtualization software and create a new virtual machine you can select the downloaded iso directly. No need to write the ISO image to a DVD or a USB flash drive.
What is the core component of the OS?
The kernel which is a file usually called vmlinuz located on the hard disk and loaded when you first turn on your computer.
What is a terminal?
the channel that allows you to log into Linux. Terminal > Shell > Kernel
What is a shell?
It is the user interface of the terminal. It accepts input and send it to the kernel for processing.
What is the default shell in Linux?
The BASH shell (Bourne Again Shell)
What is a command line terminal and how does it differ from a GUI?
The command line is text based and the default when logging into a terminal. Command line prompts you to type commands to tell the Linux kernel what to do.
A GUI can be accessed after log in via the command line. GUI can use a pointing device, typically a mouse, to navigate and start tasks.
What is required to log into an installed Linux OS?
Valid user name and password.
What is the command line prompt for a root user?
hashtag underscore #_
What is the command line prompt for a regular user?
$_
What is a gdm?
Gnome Desktop Manager
Give an example of a terminal name.
tty1
How do you access a command-line terminal within the GNOME desktop?
Top Left > Activities > Applications > Utilities > Terminal
What are basic shell “commands?”
indicates the name of the program to execute (case-sensitive)
What are basic shell “options?”
Alters the way the command works. Options are specific to the commands.
Specific letters that start with a dash(-) and appear after the command. (case-sensitive)
What are basic shell “arguments?”
Specifies parameters that tailor the command to your particular needs.
Appears after the command name and does not start with a dash. (case-sensitive)
How do you cycle through previously entered commands in the BASH shell?
The arrow keys (up, down, left, right)
What is the “su -“ command?
Switch user command. If no user is named it is assumed to be root. Ex: “su - root” and “su - user1”