クラスターノードにアタッチした 50 GB のディスクを、Windows の Disk Management で使用可能な状態にします。設定は下記の通りです。
New Simple Volume Wizard | |
---|---|
Simple volume size | Maximum disk space と同じ値を指定 |
Assign the following drive letter | D |
File system | NTFS |
Allocation unit size | Default |
Volume label | New Volume |
Perform a quick format | check |
Enable file and folder compression | uncheck |
上記の設定は、管理者用 PowerShell で次のコマンドを実行しても設定できます。
- アタッチした Block Volume に相当するディスクの番号を変数に設定(Boot Volume が C ドライブに相当し、番号は 0。今回は一つ目にアタッチした Block Volume なので 1 を指定する。)
PS > $diskNumber = 1
- ディスクをオンライン化
PS > Set-Disk $diskNumber -isOffline $false
- ディスクを初期化
PS > Initialize-Disk -Number $diskNumber -PartitionStyle "GPT"
- パーティション作成
PS > New-Partition -DiskNumber $diskNumber -UseMaximumSize -DriveLetter "D"
- フォーマット
PS > Format-Volume -DriveLetter $driveLetter -FileSystem "NTFS" -NewFileSystemLabel "New Volume" -Force
このトピックへフィードバック