kvm:change_memory_of_a_guest
This is an old revision of the document!
KVM - Change Memory of a Guest
Bring up the config for the guest:
virsh edit VM_ID
Change the memory and currentMemory fields to be the size you want in KiB:
<memory unit='KiB'>4194304</memory> <currentMemory unit='KiB'>4194304</currentMemory>
Restart for the changes to take effect:
virsh shutdown VM_ID virsh start VM_ID
Use a Script to Resizing Memory
#!/bin/bash VM_ID="my_vm_id" NEW_AMOUNT="4000" EDITOR='sed -i "s;[0-9]*</currentMemory>;$NEW_AMOUNT</currentMemory>;"' virsh edit $VM_ID EDITOR='sed -i "s;[0-9]*</memory>;$NEW_AMOUNT</memory>;"' virsh edit $VM_ID virsh shutdown $VM_ID virsh start $VM_ID
kvm/change_memory_of_a_guest.1597836105.txt.gz · Last modified: 2020/08/19 11:21 by 192.168.1.1