From ad53259851c5c5accce037d1daf610890c002808 Mon Sep 17 00:00:00 2001 From: QaidVoid <12017109+QaidVoid@users.noreply.github.com> Date: Sat, 6 Mar 2021 09:44:58 +0545 Subject: [PATCH] Create QEMU.md --- QEMU.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 QEMU.md diff --git a/QEMU.md b/QEMU.md new file mode 100644 index 0000000..f3dc634 --- /dev/null +++ b/QEMU.md @@ -0,0 +1,14 @@ +## PLAIN QEMU WITHOUT LIBVIRT +#### DRAFT +Passthrough can be done with plain qemu without using libvirt. \ +The general idea of using plain qemu is to avoid managing libvirt configurations and rather use a single script.. \ +So, how can this be achieved? \ +The script should be written in this order to achieve the same thing which is currently done by libvirt.. \ + +```sh +# SCRIPT TO RUN BEFORE VM LAUNCH - same as libvirt begin + +# LAUNCH VM HERE USING QEMU + +# SCRIPT TO RUN ON VM END - same as libvirt end +```