So here's my spec:
With this being my zfs status:
I expect to have at least 1.8 T space on my machine given that I want to use RAID5, but it only provides ~80G space which is the space I have on my smallest drive, could you please tell me how am I supposed to fix that?
Thank you.
Code:
$ gpart show
=> 40 3907029088 ada1 GPT (1.8T)
40 1024 1 freebsd-boot (512K)
1064 984 - free - (492K)
2048 4194304 2 freebsd-swap (2.0G)
4196352 3902832640 3 freebsd-zfs (1.8T)
3907028992 136 - free - (68K)
=> 40 3907029088 ada3 GPT (1.8T)
40 1024 1 freebsd-boot (512K)
1064 984 - free - (492K)
2048 4194304 2 freebsd-swap (2.0G)
4196352 3902832640 3 freebsd-zfs (1.8T)
3907028992 136 - free - (68K)
=> 40 3907029088 ada2 GPT (1.8T)
40 1024 1 freebsd-boot (512K)
1064 984 - free - (492K)
2048 4194304 2 freebsd-swap (2.0G)
4196352 3902832640 3 freebsd-zfs (1.8T)
3907028992 136 - free - (68K)
=> 40 160836400 ada0 GPT (77G)
40 1024 1 freebsd-boot (512K)
1064 984 - free - (492K)
2048 4194304 2 freebsd-swap (2.0G)
4196352 156639232 3 freebsd-zfs (75G)
160835584 856 - free - (428K)
Code:
$ zpool list
NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
zroot 298G 3.86G 294G - - 0% 1% 1.00x ONLINE -
$ zpool status
pool: zroot
state: ONLINE
config:
NAME STATE READ WRITE CKSUM
zroot ONLINE 0 0 0
raidz1-0 ONLINE 0 0 0
ada0p3 ONLINE 0 0 0
ada1p3 ONLINE 0 0 0
ada2p3 ONLINE 0 0 0
ada3p3 ONLINE 0 0 0
errors: No known data errors
$ zpool get autoexpand zroot
NAME PROPERTY VALUE SOURCE
zroot autoexpand on local
I expect to have at least 1.8 T space on my machine given that I want to use RAID5, but it only provides ~80G space which is the space I have on my smallest drive, could you please tell me how am I supposed to fix that?
Thank you.