Chapter 2 Flashcards
(202 cards)
What is a disk sector?
A subdivision of a track
Can which subdivision size of a drive can be changed?
An allocation unit (a.k.a a block or a cluster), NOT a sector
What is the smallest amount of disk space that can be used when storing a file?
An allocation unit
What is the term for space wasted in allocation units that are large than the file stored?
Slack space
What technique can be used to increase disk performance on volumes with large files?
Increase the allocation unit size
What is the default allocation size for an NTFS volume under 16 TB?
4,096 bytes
What is the size of IO operations that Hyper-V uses for VHD files?
512 bytes
What is the size of IO operations that Hyper-V uses for VHDX files?
4,096 bytes
What setting can adversely affect the performance of Hyper-V disks?
Setting the allocation unit size smaller than the size of Hyper-V’s IO operations
What does GPT stand for?
GUID partition table
What are some disadvantages of MBR partition tables?
The boot sector is stored only in place at the beginning of the disk
Only 4 partitions are supported
Partitions are limited to 2 TB in size, because partition entries are 32-bit
What are some improvements brought by GPT?
The partition info is stored in multiple locations with CRC info to detect corruption
Volume size support up to 18 exabytes
Supports unlimited numbers of partitions, though Windows limits to 128 per disk
What is required to boot from a GPT disk?
An EFI-based boot partition, UEFI firmware, and a 64-bit version of Windows (at least Server 2008 or Vista)
What is the default parition style created by Server Manager in Server 2016?
GPT, it has no controls supporting MBR
What is the default parition style created by the Disk Management MMC?
MBR
Is Server 2016 available in 32-bit?
No
What type of boot sector does a Hyper-V Generation 1 VM require?
MBR
What type of boot sector does a Hyper-V Generation 2 VM require?
UEFI
What is the maximum size of a VHD?
2 TB
What versions of Windows are VHDs compatible with?
Server 2008 or Windows 7 and above
What is the maximum size of a VHDX?
64 TB
What versions of Windows are VHDXs compatible with?
Server 2012 or Windows 8 and above
What tools can be used to create VHDs and VHDXs?
The Disk Management MMC or PowerShell’s New-VHD cmdlet
What PowerShell commands are used to create a VHD?
Install-WindowsFeature -Name Hyper-V-PowerShell
New-VHD -Path c:\disk.vhdx -SizeBytes 100GB