Tip/ETC

Windows 10 저장소 풀 생성 (RAID5)

GUINNESS30 2020. 5. 31. 22:30

디스크 관리(diskmgmt.msc)에서 RAID 5 생성이 비활성화 되어있거나 저장소 풀 만들기에서 매개 변수가 틀리다면서 저장소 풀이 생성이 안됨.

https://thewayeye.net/posts/creating-storage-space-powershell/

 

Creating a Storage Space in Windows 10 with Powershell

I’m not sure if this is due to system in question being in the insider fast ring (Build 19041 version 10.0.19041), however when trying to create a storage space via the GUI I got the following error: Can't prepare drives Close all applications that are a

thewayeye.net

위 사이트에 나온 방법을 참고(따라)하여 RAID 5 저장소 풀을 생성해본다.

$PhysicalDisks = (Get-PhysicalDisk -CanPool $True) // 변수 지정

 

New-StoragePool -FriendlyName "풀 이름" -StorageSubsystemFriendlyName "Windows Storage*" -PhysicalDisks $PhysicalDisks

 

New-VirtualDisk -StoragePoolFriendlyName "풀 이름" -FriendlyName "저장소 이름" -ResiliencySettingName Parity -UseMaximumSize // Parity는 RAID5, 위에 사이트대로 Mirror로 하면 RAID1, SIMPLE로 하면 RAID0

 

Get-VirtualDisk -FriendlyName "저장소 이름" | Get-Disk | Initialize-Disk -Passthru | New-Partition -AssignDriveLetter -UseMaximumSize | Format-Volume -FileSystem ntfs // NTFS로 자동으로 최대용량 및 드라이브 문자 할당

 

디스크 하나로 할당된 것을 확인 할 수 있다 (디스크 0,1,3 → 디스크 7)

 

저장소 공간 관리에서도 잘 할당된 걸 확인 가능

 

간단히 속도 측정해보니 확실히 읽기 속도는 올라가고 쓰기 속도는 떨어짐