aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/qemu-bis.md
diff options
context:
space:
mode:
authorJulien Dessaux2021-09-05 13:18:19 +0200
committerJulien Dessaux2021-09-05 13:18:19 +0200
commit29828f841e482d8637c4ce26f12bb6a069f8c13e (patch)
tree562dc70397f394b24c3708287185f6d612721bba /content/blog/commands/qemu-bis.md
parenttypos and wording (diff)
downloadwww-29828f841e482d8637c4ce26f12bb6a069f8c13e.tar.gz
www-29828f841e482d8637c4ce26f12bb6a069f8c13e.tar.bz2
www-29828f841e482d8637c4ce26f12bb6a069f8c13e.zip
Updated simple qemu vm blog article
Diffstat (limited to '')
-rw-r--r--content/blog/commands/qemu-bis.md16
1 files changed, 11 insertions, 5 deletions
diff --git a/content/blog/commands/qemu-bis.md b/content/blog/commands/qemu-bis.md
index ddaf4b1..d0af3c4 100644
--- a/content/blog/commands/qemu-bis.md
+++ b/content/blog/commands/qemu-bis.md
@@ -17,16 +17,22 @@ I know I already blogged about it in 2019 in [this article]({{< ref "qemu.md" >}
qemu-img create -f raw alpine.raw 16G
qemu-system-x86_64 -drive file=alpine.raw,format=raw,cache=writeback \
-cdrom Downloads/alpine-virt-3.14.0-x86_64.iso \
- -net user -boot d -machine type=q35,accel=kvm \
- -cpu host -smp 2 -m 1024 -vnc :0
+ -boot d -machine type=q35,accel=kvm \
+ -cpu host -smp 2 -m 1024 -vnc :0 \
+ -device virtio-net,netdev=vmnic -netdev user,id=vmnic
```
-Connect to the console with a `vncviewer localhost`.
+Connect to the console with a `vncviewer :0`.
## Afterwards
```sh
qemu-system-x86_64 -drive file=alpine.raw,format=raw,cache=writeback \
- -net user -machine type=q35,accel=kvm \
- -cpu host -smp 2 -m 1024 -vnc :0
+ -boot c -machine type=q35,accel=kvm \
+ -cpu host -smp 2 -m 1024 -vnc :0 \
+ -device virtio-net,netdev=vmnic -netdev user,id=vmnic
```
+
+## References
+
+ * https://wiki.gentoo.org/wiki/QEMU/Options#Networking