I have created the multipass instance with 4GB Ram and 1 CPU. I want upgrade instance to 6GB + 2 CPUS.
How can I achieve this task?
I have created the multipass instance with 4GB Ram and 1 CPU. I want upgrade instance to 6GB + 2 CPUS.
How can I achieve this task?
Stop the vm:
$ multipass stop NAME
Set the resources:
$ multipass set local.NAME.cpus=2
$ multipass set local.NAME.memory=6G
Start the vm:
$ multipass start NAME
I tried but it is not working. I think multipass doesn't allow to edit resources after creation.
I am using VMWARE now.
– Vibhu Bajaj Nov 29 '22 at 11:02