Hello,
to increase the root disk for an instance seems pretty simple. Just click on change under the disk settings for a VM. But how can I increase the size of a zvol that I want to use as a second disk in a VM?
kind regards
Hello,
to increase the root disk for an instance seems pretty simple. Just click on change under the disk settings for a VM. But how can I increase the size of a zvol that I want to use as a second disk in a VM?
kind regards
zfs set volsize=<newsize> <pool>/<path>/<to>/<zvol>
Make double sure newsize
ist not smaller than the current one or you will probably lose data. You can check the current size with
zfs get volsize <pool>/<path>/<to>/<zvol>
HTH,
Patrick
What do you get with
zfs list -t volume
?