1.Upload esxi ISO image to VM Essentials UI-Library->>Virtual Images: 2.Create a VM instance selecting the OS:ESXI Network adpater typer: E1000 Select 300GB disk size Select 32GB RAM 3.Once VM created .Login to KVM host: virsh edit <VMNAME> update network type: e1000e example: <interface type = 'network'> <mac address = '00:24:00:0f:12:7c'/> <source network = 'Management'/> <model type = 'e1000e'/> </interface> virsh destroy <VMNAME" virsh start <VMNAME" 4.Use SATA disk for all the storage
Issue: last time i faced a problem in my ubuntu to increase the / file system, even this is a part of LVM. When I tried lvextend and resizefs also the / file system not expanding. Solution: Using the growpart package 1.Install growpart: apt install -y cloud-guest-utils 2.Run: growpart <disk name> <partition name> example: growpart /dev/vda 3 3.Extend LV: lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv 4.Extend FS: resize2fs /dev/ubuntu-vg/ubuntu-lv