zfs:pools:expand_a_zfs_pool
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zfs:pools:expand_a_zfs_pool [2021/10/13 21:28] – created peter | zfs:pools:expand_a_zfs_pool [2021/10/13 21:35] (current) – peter | ||
---|---|---|---|
Line 4: | Line 4: | ||
zpool attach - This attaches a device to a vdev in the pool. This generally results in more redundancy. | zpool attach - This attaches a device to a vdev in the pool. This generally results in more redundancy. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Adding vdevs ===== | ||
+ | |||
+ | Adding a RAID Z1 vdev to a pool | ||
+ | |||
+ | <code bash> | ||
+ | zpool add testpool raidz1 ada4 ada5 ada6 | ||
+ | </ | ||
+ | |||
+ | Adding a mirrored vdev to a pool: | ||
+ | |||
+ | <code bash> | ||
+ | zpool add testpool mirror ada4 ada5 ada6 | ||
+ | zpool add otherpool ada4 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Attaching disks ===== | ||
+ | |||
+ | A Disk can be attached. | ||
+ | |||
+ | <code bash> | ||
+ | zpool attach testpool ada1 ada4 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * This results in no capacity increase. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Detaching Disks ===== | ||
+ | |||
+ | A disk can also be detached: | ||
+ | |||
+ | <code bash> | ||
+ | zpool detach testpool ada4 | ||
+ | </ | ||
+ | |||
zfs/pools/expand_a_zfs_pool.1634160522.txt.gz · Last modified: 2021/10/13 21:28 by peter