更换图床地址
This commit is contained in:
@@ -6,14 +6,14 @@ date = "2022-06-27"
|
||||
description = ""
|
||||
categories = ["Windows"]
|
||||
tags = ["NAS"]
|
||||
image = "https://img.mitsea.com/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%E5%BB%BA%20Parity%20HDD%20%E4%B8%8E%20Mirror%20SSD%20%E6%B7%B7%E5%90%88%E5%AD%98%E5%82%A8/title.avif"
|
||||
image = "https://hf-index.mitsea.com:8840/d/Share/mitsea-public-source/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%E5%BB%BA%20Parity%20HDD%20%E4%B8%8E%20Mirror%20SSD%20%E6%B7%B7%E5%90%88%E5%AD%98%E5%82%A8/title.avif"
|
||||
+++
|
||||
|
||||
当尝试创建分层存储空间的时候,我发现如果勾选,则不能创建 Parity 分区
|
||||
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||
可能是因为我的 SSD 只有两块,所以只能通过 PowerShell 手动创建了
|
||||
|
||||
@@ -21,13 +21,13 @@ image = "https://img.mitsea.com/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%
|
||||
|
||||
因为后面有一个步骤需要输入 SSD 和 HDD 两个池分别设置多大,所以需要提前预览一下空间。比如可以先把所有的 HDD 创建一个存储池,然后新建虚拟磁盘,选择 Parity 后,看下这里的值是多少。
|
||||
|
||||

|
||||

|
||||
|
||||
## 创建存储池
|
||||
|
||||
创建时,把 HDD 和 SSD 都勾选上
|
||||
|
||||

|
||||

|
||||
|
||||
## 创建虚拟磁盘
|
||||
|
||||
@@ -37,7 +37,7 @@ image = "https://img.mitsea.com/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%
|
||||
Get-StoragePool <存储池名称> | Get-PhysicalDisk | Sort Size | FT -AutoSize
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
2. 创建高速存储
|
||||
|
||||
@@ -45,7 +45,7 @@ image = "https://img.mitsea.com/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%
|
||||
New-StorageTier -StoragePoolFriendlyName <存储池名称> -FriendlyName performance -MediaType SSD
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
3. 创建容量存储
|
||||
|
||||
@@ -53,7 +53,7 @@ image = "https://img.mitsea.com/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%
|
||||
New-StorageTier -StoragePoolFriendlyName <存储池名称> -ResiliencySettingName Parity -FriendlyName capacity -MediaType HDD
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
4. 创建混合卷
|
||||
|
||||
@@ -63,12 +63,12 @@ image = "https://img.mitsea.com/blog/posts/2022/06/Windows%20Server%20%E5%88%9B%
|
||||
New-Volume -FriendlyName <卷名称> -FileSystem ReFS -StoragePoolFriendlyName <存储池名称> -StorageTierFriendlyNames performance, capacity -StorageTierSizes <高速空间大小>, <容量空间大小>
|
||||
```
|
||||
|
||||

|
||||

|
||||
|
||||
5. 添加盘符
|
||||
|
||||

|
||||

|
||||
|
||||
6. 然后在卷这边就能看到了,可以开启去重等功能
|
||||
|
||||

|
||||

|
||||
Reference in New Issue
Block a user