<div dir="ltr"><div class="gmail_quote"><div>Hi Christoph, thanks! (it works, with a few tweaks)</div><div><br></div><div>First of all, I strongly recommend other attendants to do that before the workshop! (at least, download things such as the Linux sources) If not, and with a probably saturated connection, we will spend a lot of time.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">This is the receipe to build a new qemu from the source tree:<br></blockquote><div> </div><div>At least on my system, to build qemu, I needed to install extra packages. TL;DR you can run:</div><div>sudo apt install libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev libaio-dev libusb-1.0-0-dev libspice-server-dev libnfs-dev libiscsi-dev liblzo2-dev libseccomp-dev libattr1-dev libcap-ng-dev ninja-build<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
sudo apt-get install build-essential<br>
git clone <a href="https://github.com/qemu/qemu" rel="noreferrer" target="_blank">https://github.com/qemu/qemu</a><br>
cd qemu<br>
mkdir build<br>
cd build<br></blockquote><div> sudo apt install ninja-build meson</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
../configure --disable-werror --target-list=x86_64-softmmu<br>
--prefix=/opt/newqemu/<br>
make<br>
<br>
After this the kvm-jrsl.sh scripts needs to be adjusted so that<br>
<br>
QEMU="qemu-system-x86_64"<br>
<br>
line instead says:<br>
<br>
QEMU="/opt/newqemu/bin/qemu-system-x86_64"<br></blockquote><div><br></div><div>And I needed to create shared (mkdir shared) to avoid an error. </div></div></div>