cc_staff
1,486
edits
No edit summary |
|||
Line 81: | Line 81: | ||
==Growing a zpool== | ==Growing a zpool== | ||
Growing a zpool is a relatively simple task when compared to other file systems and logical volume mangers. It is a two step process 1) add a new volume to your VM and 2) add the new device to your zpool that's it. Below is the command to add a new device to the zpool <code>data</code>. | |||
<source lang="console"> | <source lang="console"> | ||
[name@server]$ sudo zpool add data /dev/vde | [name@server]$ sudo zpool add data /dev/vde | ||
</source> | </source> | ||
The zpool will now have access to the added storage contributed by the newly added device. This process usually takes less than a minute even for very large several TB sized zpools and volumes. | |||
Check pool status | Check pool status | ||
<source lang="console"> | <source lang="console"> |