
Chapter 6
Presentation
•
Computers
•
University
•
Practice Problem
•
Easy
Kelly Gafford
Used 2+ times
FREE Resource
31 Slides • 14 Questions
1
Chapter 6
Linux Server Deployment
2
Minimum hardware requirements for some distributions include 1 GB of RAM.
Memory
Replace this with your body text. Have a nice day. Happy teaching!
CPU
The minimal amount of drive space recommended is 10 GB. But...
Storage Space
While most servers will have a NIC, multiple NICs for a server are recommended.
NIC
3
Most racks come with one or more Storage Area Network (SAN) devices. This provides large storage for servers and the network.
SAN
4
A Network Attached Storage is similar to a SAN, however, the OS is integrated into the appliance.
NAS
5
An Uninterruptible Power Supply (UPS) ensures devices don't loose power in the event of a power failure.
Uninterruptible Power Supply
6
With a Standby UPS, power is fed to the server directly from the power supply. When power failes, it switches to the battery backup.
Standby
With an Online UPS, power is fed to the battery directly from the power supply and the server always draws it's power from the battery. No switching is required.
Online
7
Match
Standby UPS
Online UPS
SAN
NAS
In a power failure, the UPS switches to battery backup
The device always pulls from the battery so no switching is necessary
Provides large storage for servers and the network.
A storage device connected to a network with it's own OS.
In a power failure, the UPS switches to battery backup
The device always pulls from the battery so no switching is necessary
Provides large storage for servers and the network.
A storage device connected to a network with it's own OS.
8
Drag and Drop
9
Virtualization is the process of running more than one OS at the same time on a single system.
Virtualization
10
There are two types of hypervisors, Type 1 and Type 2.
Hypervisors
11
A Type 1 Hypervisor interacts with the hardware directly and contains a small OS to manage the hypervisor configuration and the VMs. This type of Hypervisor is called a "Bare Metal Hypervisor."
Type 1
A Type 2 Hypervisor requires a host OS in order to provide services to the VMs. This type of hypervisor is called a "Hosted Hypervisor."
Type 2
12
Kernel Virtual Machine
KVM
This is an open source virtualization technology built into Linux. Specifically, KVM lets you turn Linux into a hypervixor that allows a host machine to run multiple, isolated virtual environments called guests or virtual machines (VMs). KVM turns Linux into a Type 1 Hypervisor.
13
Quick Emulator
QEMU
QEMU is a generic and open source machine emulator and virtualizer. It can be used in several different ways. The most common is for System Emulation or work with a hypervisor such as KVM. The framework allows the guest to run directly on the host CPU.
14
Multiple Choice
Which of the following are Type 1 hypervisors
KVM
QEMU
VMware Player
VirtualBox
15
Labelling
Label the components of a Type 2 Hypervisor
16
Legacy SCSI was developed in the 1980's and relied on ribbon cable to transmit information between the disk and controller in parallel. Each device used a unique Logical Unit Numbers (LUN)
SCSI
17
SAS is the next generation SCSI and allows for data transfer speeds greater than it's predecessor. Once connected to the controller, all configurations are performed automatically.
SAS
18
RAID allows for a variety of configurations for fault tolerance, speed, and capacity.
There are 7 RAID levels but only 4 are widely used.
RAID
19
RAID 0, also called Striping, is spanning across two or more drives so the system sees one large volume.
RAID 0
RAID 1, mirroring, requires an even number of disks so as data is written to one, it is copied to the other. This is for Fault tollerance
RAID 1
RAID 5 is striping with parity. The parity bit is used to rebuild the array in the event 1 drive failes. This requires at least 3 drives.
RAID 5
RAID 6 is the same as RAID 5, but adds 6 parity disks and allows for 2 drives to fail.
RAID 6
20
RAID 10 combines RAID 1 (mirroring) with RAID 0 (stripping) to maximize storage and provide fault tolerance to the array.
RAID 10
21
Two ways to handle RAID configurations, Software RAIDs and Hardware RAIDs. Hardware RAID is more common.
RAID Configurations
22
Linux Software RAID
Using the MDADM Package
Linux can configure a RAID during installation or after installation using the mdadm package. The package used the multiple disk (md) device file to manage the disks associated with the RAID level chosen. The mdadm package hides the member drives from Linux so the OS only sees the md device.
23
Multiple Select
Which of the following are considered storage devices? (Choose 2)
SCSI
SAS
RAID
MDADM
24
Match
Match the RAID Level with the following definitions
RAID 0
RAID 1
RAID 5
RAID 6
RAID 10
Stripping across two or more disks
Mirroring across two or more disks
Stripping across three or more disks with parity
Stripping across four or more disks with parity
Stripping a Mirrored set
Stripping across two or more disks
Mirroring across two or more disks
Stripping across three or more disks with parity
Stripping across four or more disks with parity
Stripping a Mirrored set
25
Drag and Drop
26
Zettabyte File System
ZFS
ZFS is a local file system and logical volume manager created by Sun Microsystems, Inc. to direct and control the placement, storage and retrieval of data in enterprise-class computing systems. It has scalablility, data integrity, and many built-in functions that make it well suited for enterprise systems.
27
Replication
Deduplication
Compression
Snapshots
Clones
Data protection
ZFS Provides
28
ZFS
ZFS uses "pools" of disks (zpool) to that can be managed and volumes (ZFS managed filesystems) can be created from these pools. Two primary commands to use are:
zfs - Manages specific features of the ZFS filesystem
zpool - Creates and monitors disks added to a ZFS filesystem.
29
BTRFS is a modern copy on write (COW) filesystem with advanced features that also focus on fault tolerance, repair and easy administration.
B-Tree File System
30
BTRFS
BTRFS supports:
Snapshots which do not make a full copy of the files
Built-in volume management, support for software-based RAID 0, RAID 1, RAID 10 and others
Self-healing - checksums for data and metadata, automatic detection of silent data corruptions
31
Drag and Drop
32
Multiple Select
Which RAID levels does the B-Tree File System (BTRFS) support? (Select all that apply)
RAID 0
RAID 1
RAID 5
RAID 6
RAID 10
33
Installing Linux Server
Which Distribution to Use?
In the Windows world, in order to provide access to large numbers of users, the server needs to run the Windows Server OS and have the correct number of Client Access Licenses (CAL) installed.
In Linux, any distribution can become a Linux server simply by installing necessary packages to perform the tasks needed.
34
Multiple Select
Which of the following distributions of Linux can function as a server? (Choose all that apply.)
Red Hat Enterprise Linux
Ubuntu Workstation
Fedora 32
Linux Mint
35
Any distribution can be a server
Any Linux distribution can be configured to be a server. Since all Linux distributions support the same software packages as their server siblings, any distribution of Linux can be configured to be a server as long as the hardware will support it.
During installation, workstation and server distributions install a pre-defined set of packages.
36
Log files are an excellent location to locate errors after installation or any time a problem occurs.
Log Files
37
Fill in the Blanks
Type answer...
38
If a device is not working properly, there are many tools that can be used to determine the problem.
Device Problems
39
Multiple Choice
What command can you run to view problems with devices?
dmesg
/var/log/kernel.log
/etc/dev.conf
/dev/
40
Another method to check if device drivers are loading is to check that the correct modules are loading. However, some device drivers may have been compiled into the kernel.
Modules
41
Multiple Choice
What command can you run to list all modules that are currently loaded?
lsmod
insmod
modprobe
modinfo
42
journalctl command
The journalctl command is another excellent tool to use to determine errors, especially during boot. The -b option can be added to view all of the boot messages listed in the journal.
journalctl -b --since=today
43
There may be times when you need to rescue a system. This can be due to boot problems, kernel problems, or configuration problems.
System Rescue
44
Multiple Choice
Which of the following runlevels is used for rescue or maintenance on a Linux system?
Runlevel 0
Runlevel 1
Runlevel 2
Runlevel 6
45
Also having a rescue disk available will help to repair a broken system. Many of the distributions that have a Live OS option will allow you to repair a broken distribution.
Rescue Disk
Chapter 6
Linux Server Deployment
Show answer
Auto Play
Slide 1 / 45
SLIDE
Similar Resources on Wayground
38 questions
Sistem Operasi Part 1
Presentation
•
University
38 questions
Pengenalan Kepada Teknologi Maklumat
Presentation
•
University
38 questions
GIVING DIRECTIONS
Presentation
•
University
38 questions
DIS week 2 - session 1 quiz
Presentation
•
University
42 questions
Introducción a la Informática
Presentation
•
University
42 questions
CE 9-10 Keamanan Endpoint
Presentation
•
University
Popular Resources on Wayground
20 questions
"What is the question asking??" Grades 3-5
Quiz
•
1st - 5th Grade
20 questions
“What is the question asking??” Grades 6-8
Quiz
•
6th - 8th Grade
10 questions
Fire Safety Quiz
Quiz
•
12th Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
34 questions
STAAR Review 6th - 8th grade Reading Part 1
Quiz
•
6th - 8th Grade
20 questions
“What is the question asking??” English I-II
Quiz
•
9th - 12th Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
47 questions
8th Grade Reading STAAR Ultimate Review!
Quiz
•
8th Grade
Discover more resources for Computers
15 questions
LGBTQ Trivia
Quiz
•
University
36 questions
8th Grade US History STAAR Review
Quiz
•
KG - University
25 questions
5th Grade Science STAAR Review
Quiz
•
KG - University
16 questions
Parallel, Perpendicular, and Intersecting Lines
Quiz
•
KG - Professional Dev...
20 questions
5_Review_TEACHER
Quiz
•
University
10 questions
Applications of Quadratic Functions
Quiz
•
10th Grade - University
10 questions
Add & Subtract Mixed Numbers with Like Denominators
Quiz
•
KG - University
20 questions
Block Buster Movies
Quiz
•
10th Grade - Professi...