From 476206788c7cd74de408c61560ad4a09b38af1b8 Mon Sep 17 00:00:00 2001 From: Emily Love Mills Date: Thu, 30 Jun 2022 17:13:06 -0500 Subject: [PATCH] Include virt-install OS installation instructions (#23198) * Include virt-install OS installation instructions * Fix typos Co-authored-by: Fabian Affolter --- .../_includes/installation/operating_system.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/source/_includes/installation/operating_system.md b/source/_includes/installation/operating_system.md index 5760669ea14..1686754fd80 100644 --- a/source/_includes/installation/operating_system.md +++ b/source/_includes/installation/operating_system.md @@ -213,8 +213,8 @@ Load the appliance image into your virtual machine hypervisor. (Note: You are fr Minimum recommended assignments: -- 2GB RAM -- 32GB Storage +- 2 GB RAM +- 32 GB Storage - 2vCPU _All these can be extended if your usage calls for more resources._ @@ -241,18 +241,24 @@ _All these can be extended if your usage calls for more resources._ -- title: KVM +- title: KVM (virt-manager) content: | 1. Create a new virtual machine in `virt-manager` 2. Select “Import existing disk image”, provide the path to the QCOW2 image above 3. Choose “Generic Default” for the operating system 4. Check the box for “Customize configuration before install” 5. Select your bridge under “Network Selection” - 6. Under customization select “Overview” -> “Firmware” -> “UEFI x86_64: …” + 6. Under customization select “Overview” -> “Firmware” -> “UEFI x86_64: ...” 7. Click "Add Hardware" (bottom left), and select "Channel" 8. Select device type: "unix" 9. Select name: "org.qemu.guest_agent.0" - 10. Finally select "Begin Instalation" (upper left corner) + 10. Finally select "Begin Installation" (upper left corner) + +- title: KVM (virt-install) + content: | + ```bash + virt-install --name hass --description "Home Assistant OS" --os-variant=generic --ram=2048 --vcpus=2 --disk ,bus=sata --graphics none --boot uefi + ``` {% if page.installation_type == 'windows' or page.installation_type == 'linux' %}