Where did qemu-kvm go ? (or did it?)

There used to be an executable called qemu-system-x86_64 but apparently that was replaced with
qemu-kvm but that doesn’t seem to be on my RL 8.5 system despite having the qemu-kvm packages installed.

The man pages for qemu-kvm which are present and titled
“qemu−doc − QEMU version 4.2.0 User Documentation” refer to
qemu-kvm [ options ] [ disk_image ]

Anyone know where qemu-kvm should be / if it has been superceeded ?

I used to be able to run
sudo qemu-system-x86_64 -hda /dev/sd[a-z]
to launch a vm and I’m trying to get the current version of that.

Some binaries were moved to /usr/libexec. See: /usr/libexec/qemu-kvm

Thanks, that’s where it was.

I can now use
[root@localhost libexec]# ./qemu-kvm -drive file=/dev/sde,format=raw,media=disk -smp 2 -m 4096
instead of
qemu-system-x86_64 -hda /dev/sde

…the price of progress.