Skip to content

Instantly share code, notes, and snippets.

@Weilbyte
Last active October 31, 2020 04:11
Show Gist options
  • Save Weilbyte/c264049ba5943d5b08ba9595a860af81 to your computer and use it in GitHub Desktop.
Save Weilbyte/c264049ba5943d5b08ba9595a860af81 to your computer and use it in GitHub Desktop.
Extend LVM volume automatically
#!/bin/bash
disk=/dev/sda
part=3
volume=/dev/ubuntu-vg/ubuntu-lv
echo -e "Fix\n$part\n" | /usr/sbin/parted ---pretend-input-tty $disk resizepart $part 100%
/usr/sbin/pvresize $disk$part
/usr/sbin/lvextend -r $volume -l '+100%FREE'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment