Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Debian backports to installing guide and mention extra resources for VM creation from ISO #638

Merged
merged 3 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ASN
AXFR
backend
backends
backported
balancer
balancers
benchmarking
Expand Down
8 changes: 8 additions & 0 deletions doc/howto/instances_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,14 @@ In this scenario, use the following command to create an empty VM:

incus init iso-vm --empty --vm

```{note}
Depending on the needs of the operating system being installed, you may want to allocate more CPU, memory or storage to the virtual machine.

For example, for 2 CPUs, 4 GiB of memory and 50 GiB of storage, you can do:

incus init iso-vm --empty --vm -c limits.cpu=2 -c limits.memory=4GiB -d root,size=50GiB
```

The second step is to import an ISO image that can later be attached to the VM as a storage volume:

incus storage volume import <pool> <path-to-image.iso> iso-volume --type=iso
Expand Down
10 changes: 9 additions & 1 deletion doc/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Please report packaging issues [here](https://gitlab.archlinux.org/archlinux/pac
```

```{group-tab} Debian
There are two options currently available to Debian users.
There are three options currently available to Debian users.

1. Native `incus` package

Expand All @@ -52,6 +52,14 @@ There are two options currently available to Debian users.

On such systems, just running `apt install incus` will get Incus installed.

1. Native `incus` backported package

A native `incus` backported package is currently available for Debian 12 (`bookworm`) users.

On such systems, just running `apt install incus/bookworm-backports` will get Incus installed.

****NOTE:**** Users of backported packages should not file bugs in the Debian Bug Tracker, instead please reach out [through our forum](https://discuss.linuxcontainers.org) or directly to the Debian packager.

1. Zabbly package repository

[Zabbly](https://zabbly.com) provides up to date and supported Incus packages for Debian stable releases (11 and 12).
Expand Down