Hi there. I have a Proxmox installation that I installed on a ZFS zpool. The zpool was configured with the Proxmox installation and consists of two mirrored 500 GB SSDs, like this:
I'm now starting to run out of space, so got an additional two 2TB SSDs that I was planning to add to the pool as another mirrored set of drives. I've already looked up the general procedure regarding how to add new drives to a pool and believe that I should do the following (assuming the new drives are at /dev/sdw and /dev/sdx):
However, I noticed that in the original rpool, only certain partitions of the drives are included in pool. Following is how the existing drives are partitioned:
So the dumb question I have is whether or not I need to do anything special with the two drives being added above and beyond the zpool add command above. For example, would I need to partition the two new drives in a manner similar to the two existing drives to create three partitions? Just a bit worried that I'll mess things up as I'm not too familiar with the mechanics involved in using a ZFS pool as the boot and system drive.
Any thoughts, suggestions or comments would be most appreciated.
Code:
NAME STATE READ WRITE CKSUM
rpool ONLINE 0 0 0
mirror-0 ONLINE 0 0 0
sdu2 ONLINE 0 0 0
sdv2 ONLINE 0 0 0
I'm now starting to run out of space, so got an additional two 2TB SSDs that I was planning to add to the pool as another mirrored set of drives. I've already looked up the general procedure regarding how to add new drives to a pool and believe that I should do the following (assuming the new drives are at /dev/sdw and /dev/sdx):
Code:
zpool add rpool mirror /dev/sdw /dev/sdx
However, I noticed that in the original rpool, only certain partitions of the drives are included in pool. Following is how the existing drives are partitioned:
Code:
sdu 65:64 0 447.1G 0 disk
├─sdu1 65:65 0 1007K 0 part
├─sdu2 65:66 0 447.1G 0 part
└─sdu9 65:73 0 8M 0 part
sdv 65:80 0 447.1G 0 disk
├─sdv1 65:81 0 1007K 0 part
├─sdv2 65:82 0 447.1G 0 part
└─sdv9 65:89 0 8M 0 part
So the dumb question I have is whether or not I need to do anything special with the two drives being added above and beyond the zpool add command above. For example, would I need to partition the two new drives in a manner similar to the two existing drives to create three partitions? Just a bit worried that I'll mess things up as I'm not too familiar with the mechanics involved in using a ZFS pool as the boot and system drive.
Any thoughts, suggestions or comments would be most appreciated.