Skip to content

Multipass orchestrates virtual Ubuntu instances

Notifications You must be signed in to change notification settings

b438-dev/multipass

 
 

Repository files navigation

What is multipass?

It's a system that orchestrates the creation, management and maintenance of virtual machines and associated Ubuntu images to simplify development.

Getting it

On Linux it's available as a classically confined snap, in the beta channel:

sudo snap install multipass --beta --classic

For macOS we provide installers on GitHub.

Usage

Launch an instance

multipass launch --name foo

Run commands in an instance

multipass exec foo lsb_release -a

Pass a cloud-init file to an instance

multipass launch -n foo --cloud-init cloud-config.yaml

See Using cloud-init with Multipass on the Ubuntu blog for more details.

Find available images

multipass find

Get help

multipass help
multipass help <command>

Get involved!

Here's a set of steps to build and run your own build of multipass:

Build Dependencies

cd <multipass>
apt install devscripts equivs
mk-build-deps -s sudo -i

Building

cd <multipass>
git submodule update --init --recursive
mkdir build
cd build
cmake ../
make

Running multipass daemon and client

sudo <multipass>/build/bin/multipassd &
<multipass>/build/bin/multipass launch --name foo

Connect to a running instance

<multipass>/build/bin/multipass shell foo

About

Multipass orchestrates virtual Ubuntu instances

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 95.8%
  • CMake 3.8%
  • Other 0.4%