Skip to content

Docs: Local deployment fixes for Ubuntu 26.04 - #430

Open
akremenetsky wants to merge 1 commit into
masterfrom
docs/local-deployment-ubuntu-26
Open

Docs: Local deployment fixes for Ubuntu 26.04#430
akremenetsky wants to merge 1 commit into
masterfrom
docs/local-deployment-ubuntu-26

Conversation

@akremenetsky

Copy link
Copy Markdown
Member

No description provided.

@akremenetsky
akremenetsky requested a review from a team as a code owner June 22, 2026 20:29
Signed-off-by: Anton Kremenetsky <anton.kremenetsky@gmail.com>
@akremenetsky
akremenetsky force-pushed the docs/local-deployment-ubuntu-26 branch from 57334bc to bc75241 Compare June 22, 2026 20:30

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the local deployment documentation to specify support for Ubuntu 24.04 and 26.04, adding separate installation instructions for each version. The review feedback suggests simplifying the documentation by using a single command block with qemu-system-x86 for both versions, which reduces duplication and improves maintainability.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines +21 to +33
=== "Ubuntu 24.04"

```bash
sudo apt update
sudo apt install qemu-kvm qemu-utils libvirt-daemon-system libvirt-dev mkisofs -y
```

=== "Ubuntu 26.04"

```bash
sudo apt update
sudo apt install qemu-system-x86 qemu-utils libvirt-daemon-system libvirt-dev mkisofs -y
```

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since qemu-system-x86 is available on both Ubuntu 24.04 and 26.04 (where qemu-kvm is a transitional package depending on it in 24.04), we can simplify the documentation by using a single command block instead of separate tabs. This reduces duplication and improves maintainability.

Suggested change:

sudo apt update
sudo apt install qemu-system-x86 qemu-utils libvirt-daemon-system libvirt-dev mkisofs -y

@phantomii phantomii left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please update the Russian source document as well. The English page now has separate package instructions for Ubuntu 24.04 and 26.04, while the Russian page still contains the generic Ubuntu text and only the qemu-kvm command. Otherwise the Russian documentation remains stale.


```bash
sudo apt update
sudo apt install qemu-system-x86 qemu-utils libvirt-daemon-system libvirt-dev mkisofs -y

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mkisofs is the executable name, but the Ubuntu 26.04 package is genisoimage. apt install ... mkisofs therefore fails. Please install genisoimage here instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants