Include virt-install OS installation instructions (#23198)

* Include virt-install OS installation instructions

* Fix typos

Co-authored-by: Fabian Affolter <fabian@affolter-engineering.ch>
This commit is contained in:
Emily Love Mills 2022-06-30 17:13:06 -05:00 committed by GitHub
parent aa66d22f03
commit 476206788c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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._
</div>
- 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 <PATH TO QCOW2 FILE>,bus=sata --graphics none --boot uefi
```
{% if page.installation_type == 'windows' or page.installation_type == 'linux' %}