I'm using vmware and want to add space to a VM without shutting down the system by simply adding space to the existing drive. How can I accomplish that?
Asked
Active
Viewed 1,524 times
1 Answers
2
- In the VMWare consore, extend the drive
- Use
fdiskorcfdiskorpartedto create a new primary partition with type8e/lvm(we'll call it/dev/sda3for now) - Tell the system about the new partition:
sudo partprobe /dev/sda3 - Make the new partition an lvm physical volume:
sudo pvcreate /dev/sda3 - Add the new physical volume to your volume group:
sudo vgextend $VGName /dev/sda3 - Increase the size of your logical volume:
sudo lvextend -L+10G /dev/$VGName/root - Increase the size of your file system:
sudo resize2fs /dev/$VGName/root
It may be easier to simply add additional drives to the VM and use them as physical volumes. That would clutter the VM storage area with more VMDKs. This solution is a bit messier in the vm.
αғsнιη
- 36,350
flickerfly
- 7,509