https://github.com/chmodshubham/multipass
Setup Canonical Multipass on Ubuntu and Configure a Desktop Environment
https://github.com/chmodshubham/multipass
canonical desktop-environment multipass ubuntu
Last synced: 5 months ago
JSON representation
Setup Canonical Multipass on Ubuntu and Configure a Desktop Environment
- Host: GitHub
- URL: https://github.com/chmodshubham/multipass
- Owner: chmodshubham
- Created: 2025-05-22T09:22:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-22T10:55:31.000Z (about 1 year ago)
- Last Synced: 2025-10-09T01:54:49.170Z (9 months ago)
- Topics: canonical, desktop-environment, multipass, ubuntu
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multipass Setup Guide
> [!IMPORTANT]
>
> - Follow [`setup-multiple-interfaces.md`](setup-multiple-interfaces.md) if you need to configure multiple network interfaces for your Multipass VM.
> - Follow [`setup-desktop-env.md`](setup-desktop-env.md) if you want to set up a desktop environment within your Multipass VM.
## Installation
Install Multipass using Snap:
```bash
sudo snap install multipass --channel=latest/stable
```
## Configure Bridge Networking
In the Multipass GUI, navigate to **Settings > Network** and select a bridge network interface.

## Launch a Virtual Machine
From the **Catalogue** section, choose an Ubuntu version and configure the desired CPU, RAM, and disk settings.

## SSH Access
After the VM is created:
1. Add your SSH public key to the VM:
```bash
echo "" >> ~/.ssh/authorized_keys
```
2. You can now SSH into the VM from your local system:
```bash
ssh @
```