The passthrough security model will attempt to create files on the
host using the same uid as the one on the guest, by calling fchown,
which will fail if qemu is not called as root.
Fix that by using security model none, which will still call the
fchown, but ignore the returned error.
The
passthrough
security model will attempt to create files on the host using the same uid as the one on the guest, by callingfchown
, which will fail ifqemu
is not called as root.Fix that by using security model
none
, which will still call thefchown
, but ignore the returned error.This will solve issue unikraft/#933.
Signed-off-by: Stefan Jumarea stefanjumarea02@gmail.com