Multipass: Difference between revisions
From AWVVO
Jump to navigationJump to search
mNo edit summary |
mNo edit summary |
||
Line 5: | Line 5: | ||
== Launch an instance == | == Launch an instance == | ||
<syntaxhighlight lang="php" copy line highlight="0"> | <syntaxhighlight lang="php" copy line highlight="0"> | ||
multipass launch 24.10 --name ubuntu24 --cpus 1 --memory 2G | multipass launch 24.10 --name ubuntu24 --disk 10G --cpus 1 --memory 2G | ||
</syntaxhighlight> | |||
== Deletee a instance == | |||
<syntaxhighlight lang="php" copy line highlight="0"> | |||
multipass stop ubuntu24 | |||
multipass delete ubuntu24 | |||
multipass purge | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 15:08, 24 March 2025
Multipass is a lightweight VM manager developed by Canonical that lets you easily run Ubuntu instances on macOS, Windows, and Linux, ideal for development and testing.
Example to launch Ubuntu 24.04 LTS with 1 CPU and 2GB memory:
Launch an instance
multipass launch 24.10 --name ubuntu24 --disk 10G --cpus 1 --memory 2G
Deletee a instance
multipass stop ubuntu24
multipass delete ubuntu24
multipass purge