This repository was archived by the owner on May 12, 2021. It is now read-only.

Description
Description of problem
I follow Developer-Guide.md
conditions:
- initrd image and hyperstart kernel
-default runtime is kata-runtime
when I use below command to start a container, which return an error
sudo docker run -ti busybox sh
Expected result
start a busybox container
Actual result
output:
docker: Error response from daemon: OCI runtime create failed: /usr/share/defaults/kata-containers/configuration.toml: file /usr/bin/qemu-system-x86_64 does not exist: unknown.
Finally, I found the QEMU version should be qemu-lite, and the dir of /usr/bin/ only have qemu-lite-system-x86_64。 Then, I change the qemu-system-x86_64 to qemu-lite-system-x86_64, it works.