4

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?

1 Answers1

7

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
Bram
  • 3,699