home assistant - kvm
supervised hassos - get and extract image
# use wget
> wget \
https://github.com/home-assistant/operating-system/releases/download/6.6/haos_ova-6.6.qcow2.xz
# extract xc
> xz -d -v haos_ova-6.6.qcow2.xz
import qcow2
# make usage of virt-manager cli
> virt-install --import --name ho-hassos-03 \
--memory 2048 --vcpus 2 --cpu host \
--disk haos_ova-6.6.qcow2,format=qcow2,bus=virtio \
--network bridge=virbr0,model=virtio \
--graphics none \
--noautoconsole \
--boot uefi
import qcow2 (macvtap
)
# make usage of virt-manager cli
virt-install --import --name ho-hassos-03 \
--memory 2048 --vcpus 2 --cpu host \
--disk haos_ova-6.6.qcow2,format=qcow2,bus=virtio \
--network type=direct,source=enp7s0,source_mode=bridge,model=virtio \
--graphics none \
--noautoconsole \
--boot uefi
20-11-2021