Skip to content

Commit e81697c

Browse files
committed
Fixed extra white space.
1 parent 4c63c24 commit e81697c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

input/posts/raid1-windows-server-2016.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ DISKPART> list disk
2929
-------- ------------- ------- ------- --- ---
3030
Disk 1 Online 127 GB 127 B
3131
Disk 2 Online 127 GB 127 B
32-
3332
```
3433
In the above example we have two disks, we will put both of these into our RAID1. As can be seen above, `diskpart` is base 0.
3534

@@ -64,8 +63,8 @@ Windows requires two partitions when in MBR mode (EFI requires 3, which I won't
6463
DISKPART> select disk 0
6564
DISKPART> create volume mirror disk=0,1 size=500
6665
DISKPART> format quick fs=ntfs label="System Reserved"
67-
6866
```
67+
6968
These commands create a mirrored volume using disk `0` and `1` with a size of `500mb` (default size under Windows 2016). Then it formats the newly created (and automatically selected) volume using `ntfs` as the filesystem and "System Reserved" as the volume label.
7069

7170
Then we can create the OS partition using similar commands:

0 commit comments

Comments
 (0)