diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/blog/2024-02-06-zfs.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/blog/2024-02-06-zfs.md b/content/blog/2024-02-06-zfs.md index 9dd3eb5..753ada0 100644 --- a/content/blog/2024-02-06-zfs.md +++ b/content/blog/2024-02-06-zfs.md @@ -70,6 +70,8 @@ Filesystem Size Used Avail Use% Mounted on /dev/sdb1 7.3T 144G 6.8T 3% /mnt/red-02 /dev/sdc1 7.3T 5.5T 1.9T 75% /mnt/white-02 /dev/sdd1 9.1T 8.7T 435G 96% /mnt/white-01 +/dev/sde1 7.3T 28K 6.9T 1% /mnt/red-03 +/dev/sdf1 7.3T 28K 6.9T 1% /mnt/red-04 ``` If you're going to use mounted disks, make sure to umount them before creating @@ -233,7 +235,7 @@ Once the drives are formatted, we can add these disks to the pool. sudo zpool add tank mirror /dev/sdc /dev/sdd ``` -When we list the pool again, we can see that our size is now updates to +When we list the pool again, we can see that our size is now updated to approximately 22TB. This represents my hard drives totalling 45.6TB when shown with `fdisk -l`, with a Raid10 configuration using 22TB for mirroring and 22TB of useable space. |