Esxi increase hard drive size (Ubuntu none LVM)
1. Install parted if you don't have them using
CI-Server:~$ sudo apt-get install cloud-guest-utils2. Turn off swap. we gonna remove it's partition!
CI-Server:~$ sudo swapoff -aCI-Server:~$ sudo partedget partitions list with print all:(parted) print allModel: Virtio Block Device (virtblk)Disk /dev/vda: 752GBSector size (logical/physical): 512B/512BPartition Table: msdosDisk Flags:
Number Start End Size Type File system Flags1 1049kB 528GB 528GB primary ext4 boot2 528GB 537GB 8588MB extended5 528GB 537GB 8588MB logical linux-swap(v1)remove none root partitions with rm (part-index):
(parted) rm 5Warning: Partition /dev/vda5 is being used. Are you sure you want to continue?Yes/No? yesError: Partition(s) 5 on /dev/vda have been written, but we have been unable toinform the kernel of the change, probably because it/they are in use. As aresult, the old partition(s) will remain in use. You should reboot now beforemaking further changes.Ignore/Cancel? C(parted) print allModel: Virtio Block Device (virtblk)Disk /dev/vda: 752GBSector size (logical/physical): 512B/512BPartition Table: msdosDisk Flags:
Number Start End Size Type File system Flags 1 1049kB 528GB 528GB primary ext4 boot 2 528GB 537GB 8588MB extended
(parted) rm 2Error: Partition(s) 5 on /dev/vda have been written, but we have been unable toinform the kernel of the change, probably because it/they are in use. As aresult, the old partition(s) will remain in use. You should reboot now beforemaking further changes.Ignore/Cancel? C(parted) print allModel: Virtio Block Device (virtblk)Disk /dev/vda: 752GBSector size (logical/physical): 512B/512BPartition Table: msdosDisk Flags:
Number Start End Size Type File system Flags 1 1049kB 528GB 528GB primary ext4 bootThe commands works on ubuntu 16.04 (NONE LVM) and machine is running on a kvm:
sudo growpart /dev/vda 1sudo resize2fs /dev/vda1
留言