diff options
| -rw-r--r-- | IDEAS.md | 9 | 
1 files changed, 6 insertions, 3 deletions
| @@ -119,17 +119,20 @@      kvmx up $guest      # ensure parted is installed -    sudo apt-get install -y parted +    #sudo apt-get install -y parted +    sudo apt-get install -y cloud-guest-utils      # resize virtual machine root fs - while the partition is mounted!      # this parted command currently need to be done manually      #echo resizepart 2 -1 | kvmx ssh $guest sudo parted /dev/vda -    # See https://unix.stackexchange.com/questions/190317/gnu-parted-resizepart-in-script#202872 +    # See https://unix.stackexchange.com/questions/373063/auto-expand-last-partition-to-use-all-unallocated-space-using-parted-in-batch-m +    #     https://unix.stackexchange.com/questions/190317/gnu-parted-resizepart-in-script#202872      #     https://bugs.launchpad.net/ubuntu/+source/parted/+bug/1270203      #     https://techtitbits.com/2018/12/using-parteds-resizepart-non-interactively-on-a-busy-partition/      #     https://serverfault.com/questions/870594/resize-partition-to-maximum-using-parted-in-non-interactive-mode -    kvmx ssh $guest sudo parted /dev/vda resizepart 2 -1 Yes +    #kvmx ssh $guest sudo parted /dev/vda resizepart 2 -1 Yes +    kvmx ssh $guest sudo growpart /dev/vda 2      kvmx ssh $guest sudo resize2fs /dev/vda2      kvmx ssh $guest sudo touch /forcefsck | 
