0

I have built a qemu with some modifications, and it can run correctly with cmd like ./qemu-system-x86-64 ...., but I failed to integrate it into virt-manger, even if I added it to PATH ahead of default system lib.

Gordon
  • 396
  • 2
  • 15
  • Strangely maybe, but this looks more like a Superuser question or Unix & Linux. Altho you build your own version of qemu, its not a programming question. – CodeAsm Dec 17 '22 at 17:55

1 Answers1

1

There is an option in XML file, you can edit it to enable your own qemu.

<devices>
    <emulator>/path/to/your/qemu-system-x86_64</emulator>
    <disk type='file' device='disk'>
.........
Gordon
  • 396
  • 2
  • 15