Hello,
I've cloned the installation of FreeBSD to an external SD card and now I have another hard drive available for my RAIDZ configuration. This is the pool:
I want to add the da0 hard drive, I trued using zpool add:
Is it possible to attach a new hard disk to the existing RAID without destroying the pool?
Seems like the only option I have is using zfs 2.3.0 but I only have zfs 2.2.6 running. Should I compile it?
Thanks
I've cloned the installation of FreeBSD to an external SD card and now I have another hard drive available for my RAIDZ configuration. This is the pool:
Code:
~ [prometheus] % zpool status stranger
pool: stranger
state: ONLINE
scan: scrub repaired 0B in 00:14:48 with 0 errors on Thu Jan 30 14:31:57 2025
config:
NAME STATE READ WRITE CKSUM
stranger ONLINE 0 0 0
raidz1-0 ONLINE 0 0 0
da1 ONLINE 0 0 0
da2 ONLINE 0 0 0
da3 ONLINE 0 0 0
da4 ONLINE 0 0 0
da5 ONLINE 0 0 0
da6 ONLINE 0 0 0
da7 ONLINE 0 0 0
errors: No known data errors
Code:
~ [prometheus] % zpool add stranger raidz da0 da1 da2 da3 da4 da5 da6 da7
invalid vdev specification
use '-f' to override the following errors:
/dev/da1 is part of active pool 'stranger'
/dev/da2 is part of active pool 'stranger'
/dev/da3 is part of active pool 'stranger'
/dev/da4 is part of active pool 'stranger'
/dev/da5 is part of active pool 'stranger'
/dev/da6 is part of active pool 'stranger'
/dev/da7 is part of active pool 'stranger'
Is it possible to attach a new hard disk to the existing RAID without destroying the pool?
Seems like the only option I have is using zfs 2.3.0 but I only have zfs 2.2.6 running. Should I compile it?
Thanks