Skip to content

Instantly share code, notes, and snippets.

@keepitsimple
Forked from mifix/resize.sh
Created January 11, 2017 14:12
Show Gist options
  • Save keepitsimple/f4a2c2c3b1828607cd8919035e85b976 to your computer and use it in GitHub Desktop.
Save keepitsimple/f4a2c2c3b1828607cd8919035e85b976 to your computer and use it in GitHub Desktop.
LXD - ZFS - resize
# make sure zfs autoexpand is enabled (only needed once)
sudo zpool set autoexpand=on lxd
sudo truncate -s 50G /var/lib/lxd/zfs.img
# Make zfs realize the fact that partition has been changed and make zpool
# use the new partition which is actually the same one
sudo zpool online -e lxd /var/lib/lxd/zfs.img /var/lib/lxd/zfs.img
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment