20740C 02-GMG
20740C 02-GMG
20740C 02-GMG
Dynamic disks:
• Are used for configuring fault tolerant storage.
• Virtual hard disks are files that you can use the same
way as physical hard disks
• You can:
• Create and manage virtual hard disks by using Disk
Management and Diskpart.exe
• Configure .vhd or .vhdx files
• Configure computers to start from the virtual hard disk
• Transfer virtual hard disks from Hyper-V servers, and
start computers from the virtual hard disk
• Use virtual hard disks as a deployment technology
Selecting a disk type
As performance
increases, so does
cost SSD
S
I OP
mio
1.5
SAS Fa st:
PS
I O
10 Performance
SCSI ~2
S
I OP
SATA 150
~
EIDE Slo
w
Cost
w
Slo
Lesson 2: Managing volumes in Windows Server
• Get-disk
Lists all available disks installed in the server computer
• Clear-disk
Erasing all data on the disk
• Initialize-disk
Initializes a RAW disk for first time use, enabling the disk to
be formatted and used to store data
• Get-volume
Gets the specified Volume object / all Volume objects
• Format-volume
Formats one or more existing volumes or a new volume on
an existing partition.
Demonstration: Managing volumes
RAID:
• Combines multiple disks into a single logical unit to
provide fault tolerance and performance benefits
• Provides fault tolerance by using:
• Disk mirroring
• Parity information
• Can provide performance benefits by spreading disk
I/O across multiple disks
• Can be configured using several different levels
• Should not replace server backups
RAID levels
RAID 0
Striped set without parity or mirroring
A1 A2
A3 A4
A5 A6
A7 A8
Disk 0 Disk 1
RAID levels
RAID 1
Mirrored drives
A1 A1
A2 A2
A3 A3
A4 A4
Disk 0 Disk 1
RAID levels
RAID 5
Block-level striped set with parity distributed across all disks
A1 A2 A3 A4 Ap
B1 B2 B3 Bp B4
C1 C2 Cp C3 C4
D1 Dp D2 D3 D4
RAID 6
Block-level striped set with parity distributed across all disks
A1 A2 A3 A4 Ap Ap
B1 B2 B3 Bp Bp B4
C1 C2 Cp Cp C3 C4
D1 Dp Dp D2 D3 D4
RAID 1 + 0
Each pair of disks is mirrored, then the mirrored disks are striped
A1 Striped A5 A9 A13
A2 A6 A10 A14
A3 A7 A11 A15
A4 A8 A12 A16
Mirrored
A1 A5 A9 A13
A2 A6 A10 A14
A3 A7 A11 A15
A4 A8 A12 A16
Disk 4 Disk 5 Disk 6 Disk 7
Lab: Configuring local storage
Review Questions
• Best Practices
• Tools