Local Storage Flashcards

1
Q

Partition table format:

How many partitions per drive can MBR / GPT handle ?

A

MBR : 4 Primary partitions

GPT : 128 partitions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Partition table format:

How big can MBR / GPT disks be ?

A

MBR: up to 2 TB
GPT: up to 128 exabytes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Disk type:

Can the disk type be converted without data loss ?

A

Basic disk -> dynamic disk: yes

Dynamic disk -> Basic disk: no

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What file systems are there ?

A
FAT (partitions up to 2GB)
FAT32 (partitions up to 2TB)
exFAT (for flash drives)
NTFS
ReFS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to view information about the NTFS volume ?

A

fsutil fsinfo volumeinfo f:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to view the sector information about the NTFS volume ?

A

fsutil fsinfo sectorinfo f:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Create a new dynamically resizing .vhd file of 10 GB with PS

A

New-VHD -Path c:\sales.vhd -Dynamic -SizeBytes 10Gb

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Cmdlets to

  • mount a VHD,
  • initialize it,
  • create a Partition
  • format it
A
  • Mount-VHD
  • Initialize-disk -PartitionStyle MBR
  • New-Partition -AssignDriveLetter -UseMaximumSize
  • Format-Volume -FileSystem NTFS
    - Confirm:$false -Force
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Change the physical sector size of MyDisk.vhdx with PS

A

Set-VHD –Path MyDisk.vhdx –PhysicalSectorSizeBytes 4096

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Cmdlets to

  • get Information about a VHD
  • convert it to vhdx
A
  • Get-VHD

- Convert-VHD

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What kind of volumes does 2016 support ?

A
  • simple
  • spanned
  • striped (RAID 0)
  • mirrored (RAID 1)
  • RAID 5

but only on dynamic disks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How many disks can be used for a spanned volume ?

A

2 - 32

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Tools to create and manage volumes

A

Server Manager
Disk Management
Diskpart.exe
Power Shell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

In Server Manager -> Files and Storage Services ->
Volumes
What can be done with existing volumes ?

A
Manage Drive Letter And Access Paths 
Format 
Extend Volume 
Delete Volume 
Properties
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Cmdlet to remove all partitions and volumes from a disk

A

Clear-disk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Cmdlet to list all available disks in the computer

A

Get-disk

17
Q

Cmdlet to list all accessible volumes

A

Get-volume

18
Q

What are the limitations of extending and shrinking volumes ?

A

FAT, FAT32, exFAT cannot be resized
ReFS can only be extended
NTFS can be extended and shrunk
A volume with bad clusters cannot be shrunk

19
Q

How can a volume be extended or shrunk ?

A

Disk Management
Diskpart.exe (EXTEND / SHRINK)
Resize-Partition

20
Q

List all the available disks that have yet to be initialized

A

Get-Disk | Where-Object PartitionStyle –eq “RAW”

21
Q

Create a virtual hard disk and volume on it with PS

A

New-VHD -Path c:\MyDisk.vhd -Dynamic -SizeBytes 10Gb
Mount-VHD
Initialize-Disk
New-Partition -AssignDriveLetter -UseMaximumSize
Format-Volume -FileSystem NTFS
-Confirm:$false -Force

22
Q

Dismount a virtual hard disk with PS

A

Dismount-vhd C:\MyDisk.vhd

23
Q

Check the properties of a virtual hard disk

A

Get-vhd C:\MyDisk.vhd

24
Q

Tool to create a symbolic link to a file or folder

A

mklink.exe

25
Q

Can chkdsk.exe be used on a
ReFS - volume
Ntfs - volume
virtual disk

A

ReFS : No
Ntfs : Yes
Virtual Disk : No

26
Q

Can Defrag.exe be used on a
ReFS - volume
Ntfs - volume
virtual disk

A

ReFS : No
Ntfs : Yes
Virtual Disk : No