Fix v2v input side diagram.
[libguestfs-talks.git] / 2019-kvm-forum / 2600-remote-boot-risc-v.html
1 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2 <link rel="stylesheet" href="style.css" type="text/css"/>
3 <script src="code.js" type="text/javascript"></script>
4
5 <h1>Run RISC-V VMs from remote compressed images</h1>
6
7 <pre>
8 nbdkit --filter=cow --filter=xz curl \
9     https://dl.fedoraproject.org/pub/alt/risc-v/
10     disk-images/fedora/rawhide/20190703.n.0/
11     Developer/Fedora-Developer-Rawhide-20190703.n.0<b>-sda.raw.xz</b>
12
13 qemu-system-riscv64 \
14     -nographic \
15     -machine virt \
16     -smp 8 \
17     -m 2G \
18     <b>-drive file.driver=nbd,file.host=localhost,
19            file.port=10809</b>
20 </pre>