From 7822d4dccba29a8ac35217b293d2049db4312d08 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 21 Oct 2016 12:30:07 +0100 Subject: [PATCH] FAQ: Document how to switch kernel and qemu. --- docs/guestfs-faq.pod | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/guestfs-faq.pod b/docs/guestfs-faq.pod index d91c657e7..67264b250 100644 --- a/docs/guestfs-faq.pod +++ b/docs/guestfs-faq.pod @@ -1033,6 +1033,25 @@ Kill any session (non-root) libvirtd that is running, and next time you run the libguestfs command, you should see a large amount of useful debugging information from libvirtd in F +=head2 Broken kernel, or trying a different kernel. + +You can choose a different kernel for the appliance by setting some +L: + + export SUPERMIN_KERNEL_VERSION=4.8.0-1.fc25.x86_64 + export SUPERMIN_KERNEL=/boot/vmlinuz-$SUPERMIN_KERNEL_VERSION + export SUPERMIN_MODULES=/lib/modules/$SUPERMIN_KERNEL_VERSION + rm -rf /var/tmp/.guestfs-* + libguestfs-test-tool + +=head2 Broken qemu, or trying a different qemu. + +You can choose a different qemu by setting the hypervisor +L: + + export LIBGUESTFS_HV=/path/to/qemu-system-x86_64 + libguestfs-test-tool + =head1 DESIGN/INTERNALS OF LIBGUESTFS See also L.