Docs: Local deployment fixes for Ubuntu 26.04 - #430
Conversation
Signed-off-by: Anton Kremenetsky <anton.kremenetsky@gmail.com>
57334bc to
bc75241
Compare
There was a problem hiding this comment.
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.
| === "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 | ||
| ``` |
There was a problem hiding this comment.
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
left a comment
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
mkisofs is the executable name, but the Ubuntu 26.04 package is genisoimage. apt install ... mkisofs therefore fails. Please install genisoimage here instead.
No description provided.