Difference between revisions of "Zfs resize disk"

From UVOO Tech Wiki
Jump to navigation Jump to search
Line 55: Line 55:
 
- https://serverfault.com/questions/946055/increase-the-zfs-partition-to-use-the-entire-disk
 
- https://serverfault.com/questions/946055/increase-the-zfs-partition-to-use-the-entire-disk
 
- https://serverfault.com/questions/703471/why-isnt-my-zfs-pool-expanding-using-zfs-on-linux
 
- https://serverfault.com/questions/703471/why-isnt-my-zfs-pool-expanding-using-zfs-on-linux
 +
 +
# Vmware discover new disk
 +
```
 +
echo "- - -" | sudo tee /sys/class/scsi_host/host*/scan
 +
```

Revision as of 22:13, 8 June 2022

Expand disk in Vsphere or qemu-img then

echo 1 | sudo tee /sys/class/block/sdb/device/rescan
sudo partprobe -s
lsblk
zpool list
sudo zpool online -e <POOL NAME> <DEVICE NAME>
# zpool online -e mypoolname sdb
zpool list

# Note:
# partprobe - command to inform the OS of partition table changes

https://serverfault.com/questions/946055/increase-the-zfs-partition-to-use-the-entire-disk

If you want autoexpand enabled

zpool get autoexpand zfspv-pool
zpool set autoexpand=on zfspv-pool

Azure

Other options that will probably work but test first

parted /dev/sdb rm 9
parted /dev/sdb resizepart 1 100%

Trash notes

echo 1 | sudo tee /sys/class/block/sdb/device/rescan
zpool get autoexpand zfspv-pool
zpool set autoexpand=on zfspv-pool

sudo partprobe -s
sudo parted /dev/sdb rm 9
sudo parted /dev/sdb resizepart 1 100%
zpool status -v
sudo zpool online -e zfspv-pool sdb

Vmware discover new disk

echo "- - -" | sudo tee /sys/class/scsi_host/host*/scan