diff options
author | Julien Dessaux | 2021-09-05 13:18:19 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-09-05 13:18:19 +0200 |
commit | 29828f841e482d8637c4ce26f12bb6a069f8c13e (patch) | |
tree | 562dc70397f394b24c3708287185f6d612721bba /content | |
parent | typos and wording (diff) | |
download | www-29828f841e482d8637c4ce26f12bb6a069f8c13e.tar.gz www-29828f841e482d8637c4ce26f12bb6a069f8c13e.tar.bz2 www-29828f841e482d8637c4ce26f12bb6a069f8c13e.zip |
Updated simple qemu vm blog article
Diffstat (limited to 'content')
-rw-r--r-- | content/blog/commands/qemu-bis.md | 16 |
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 |