Incus's qemu version?

,

Incus is using is own version of qemu for vms right?
How can I check which version is used? Is there some specific commands?
I am using NixOS btw.
Thx !

There should be several ways. The one I used is

$ /opt/incus/bin/qemu-img --version
qemu-img version 9.0.4 (v9.0.4-dirty)
Copyright (c) 2003-2024 Fabrice Bellard and the QEMU Project developers
$ 

Thx for answer, but it does’nt work for me.

[alain@CAMPELS:~]$ qemu-img --version
The program 'qemu-img' is not in your PATH. It is provided by several packages.
You can make it available in an ephemeral shell by typing one of the following:
  nix-shell -p qemu
  nix-shell -p qemu-utils
  nix-shell -p qemu_full
  nix-shell -p qemu_kvm
  nix-shell -p qemu_test

I did’nt install any qemu on my system. Only Incus is. And it comes and uses his own ‘qemu’ embedded right? So my question is: how can I know the qemu’s version that Incus uses? :slight_smile:

Incus has its own copy of QEMU and it’s likely different from the one of your system. You can find it in /nix/store/... but better do it the proper way.

$ incus info
...
  driver: lxc | qemu
  driver_version: 6.0.4 | 9.0.4
...

The QEMU version is 9.0.4.

Thank you !
btw I founded it also in the /nix/store/… :slight_smile: