Last active
June 7, 2023 12:28
-
-
Save acosonic/fc24051aa0f4994473f24037f15b7580 to your computer and use it in GitHub Desktop.
Ubuntu resize VM disk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo 1 > /sys/block/sda/device/rescan | |
cfdisk /dev/sda | |
pvresize /dev/sda3 | |
lvextend -l +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv | |
resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pvresize /dev/sda3
pvdisplay
lvextend -l +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv
resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv