Skip to content

Commit

Permalink
Fixed extra white space.
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvenga committed Dec 16, 2017
1 parent 4c63c24 commit e81697c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions input/posts/raid1-windows-server-2016.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ DISKPART> list disk
-------- ------------- ------- ------- --- ---
Disk 1 Online 127 GB 127 B
Disk 2 Online 127 GB 127 B
```
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.

Expand Down Expand Up @@ -64,8 +63,8 @@ Windows requires two partitions when in MBR mode (EFI requires 3, which I won't
DISKPART> select disk 0
DISKPART> create volume mirror disk=0,1 size=500
DISKPART> format quick fs=ntfs label="System Reserved"
```

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.

Then we can create the OS partition using similar commands:
Expand Down

0 comments on commit e81697c

Please sign in to comment.