Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 535 Bytes

multipass.md

File metadata and controls

37 lines (30 loc) · 535 Bytes

Multipass Setup

Start multipass if it's not running:

sudo snap restart multipass.multipassd

Start a new multipass instance with the following command:

multipass launch jammy \
  --name orc8r \
  --disk 100G \
  --memory 8G \
  --cpus 4

Check if instance has started:

multipass ls

Get access to the shell:

multipass shell orc8r

Add your public SSH key to the instance:

vim .ssh/authorized_keys

Uninstall

Delete Instance

multipass delete --purge orc8r