Chapter 2 Tasks Flashcards
1
Q
GUI LAB
- Create a new volume and provide it a drive letter using the NTFS file system
- Open the new volume
- Create a new volume but assign a NTFS folder name using the ReFS filesystem
- Locate the new folder and open the volume
- Do the same above but through server manager
A
- Right click the windows icon and select ‘Disk Management’
- Bring the disk online
- Initialise the disk
- Create a new simple volume
- Assign it a drive letter
- Do the same but assign the simple volume a mount point instead of a drive letter
2
Q
Format a new disk, making sure it uses GPT and has the filesystem ReFS, finally assign it a drive letter. This is to be done using diskpart.
A
- list disk
- select disk [disk-number]
- if there is data on the disk: clean. Note: if you use ‘clean all’, it will zero out each sector on the hard drive preventing any recovery attempts on data that was on there previously.
- convert gpt
- create partition [type]
- list partition
- select partition [partition-number]
- format fs=refs label=”[label-name>]” quick
- assign letter=[drive-letter]
3
Q
GUI LAB
- Create a spanned volume
- Create a mirrored volume (RAID 1)
- Create a new striped volume (RAID 0)
- Do the same above but in diskpart
- Do the same above but in server manager
A
4
Q
GUI LAB
- Create a new virtual disk using parity through storage spaces
- Add a new disk to the VM
- Assign the new disk to the storage pool
A
5
Q
GUI LAB
- Create a new volume
- Configure deduplication
- Enable throughput optimisation to run a certain times during the week, but at different times during the weekend
- Open powershell and get all the commands in the deduplication module
- Get the deduplication status and pipe it into the format list cmdlet
- Get the volumes data deduplication is enabled on and pipe it into the format list cmdlet
- Start the deduplication job
A