diff options
author | Julien Dessaux | 2021-03-23 22:38:09 +0100 |
---|---|---|
committer | Julien Dessaux | 2021-03-23 22:38:09 +0100 |
commit | f5eb463f91836525239327537392fc4d65fcb542 (patch) | |
tree | 11d0000dfe9b5e6a29db1e3224ccf36841a64420 /content/blog/commands | |
parent | Added an openbsd article and simplified all useless relref (diff) | |
download | www-f5eb463f91836525239327537392fc4d65fcb542.tar.gz www-f5eb463f91836525239327537392fc4d65fcb542.tar.bz2 www-f5eb463f91836525239327537392fc4d65fcb542.zip |
Cut down code quotes that were too long and disformed the blog template
Diffstat (limited to 'content/blog/commands')
-rw-r--r-- | content/blog/commands/qemu.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/blog/commands/qemu.md b/content/blog/commands/qemu.md index 74afc5e..294c9a9 100644 --- a/content/blog/commands/qemu.md +++ b/content/blog/commands/qemu.md @@ -14,7 +14,8 @@ In this example I am using the docker0 bridge because I do not want to have to m ip tuntap add tap0 mode tap brctl addif docker0 tap0 qemu-img create -f qcow2 obsd.qcow2 10G -qemu-system-x86_64 -curses -drive file=install65.fs,format=raw -drive file=obsd.qcow2 -net nic,model=virtio,macaddr=00:00:00:00:00:01 -net tap,ifname=tap0 +qemu-system-x86_64 -curses -drive file=install65.fs,format=raw -drive file=obsd.qcow2 \ + -net nic,model=virtio,macaddr=00:00:00:00:00:01 -net tap,ifname=tap0 qemu-system-x86_64 -curses -drive file=obsd.qcow2 -net nic,model=virtio,macaddr=00:00:00:00:00:01 -net tap,ifname=tap0 {{< /highlight >}} |