I’m trying to start a FydeOS virtual machine using Incus, but without luck (my host is vanilla Ubuntu 24.02 with ZFS backend and Incus 6.9 from Zabbly). When launching the VM, I see one of 3 things:
- with secureboot disabled, the process hangs on
BdsDxe
screen - with secureboot enabled, I get
Access Denied
error - when I rename
.img
file toiso
, I getNot Found
error
When process hangs, I see this:
BdsDxe: loading Boot0001 "UEFI QEMU QEMU HARDDISK " from PciRoot(0x0)/Pci(0x1,0x1)/Pci(0x0,0x0)/Scsi(0x1,0x1)
BdsDxe: starting Boot0001 "UEFI QEMU QEMU HARDDISK " from PciRoot(0x0)/Pci(0x1,0x1)/Pci(0x0,0x0)/Scsi(0x1,0x1)
I will be grateful for any help.
Installing VM from .img file (or .iso)
First, I downloaded the official FydeOS image file for AMD graphics (I’m using 5600G APU) and extracted .img
file from .xz
archive:
xz -d FydeOS_for_PC_apu_v19.0-io-stable.img.xz
Then I started an empty VM (FydeOS supports UEFI and Secure Boot, but I tried with security.secureboot=false
and without):
incus init fydeos --empty --vm -c limits.cpu=4 -c limits.memory=8GiB -d root,size=30GiB -c security.secureboot=false
incus config set fydeos raw.qemu -- "-device intel-hda -device hda-duplex -audio spice"
FydeOS image comes with .img
file extension. I tried attaching .img
file and a file renamed to .iso
:
incus config device add fydeos install disk source=/home/user/Downloads/FydeOS_for_PC_apu_v19.0-io-stable.img boot.priority=10
incus start fydeos --console=vga
When starting the VM, I see one of 3 things:
- with secureboot disabled, the process hangs on
BdsDxe
screen - with secureboot enabled, I get
Access Denied
error - when I rename
.img
file toiso
, I getNot Found
error
What am I doing wrong? Is this .img
simply incompatible with Incus?
Installing VM from .ova file
There is also an image file of FydeOS for VMware. It comes with .ova
extension.
I tried convering it into .raw
file using qemu-img
(based on tutorial Quick Notes on using Incus to run a .OVA File), but I got the same error.
Clearly I’m missing something. Any help will be greatly appreciated.