From bd12420908aa6905e6a678b049a1ddf7be267082 Mon Sep 17 00:00:00 2001 From: Scott Lowe Date: Fri, 22 Jan 2016 15:49:56 -0700 Subject: [PATCH] Fix type in virt-install command line The `disk` parameter in the `virt-install` command line was incorrect; this commit fixes it. --- kvm-macvtap/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvm-macvtap/README.md b/kvm-macvtap/README.md index c6ef8ae..63e32cf 100644 --- a/kvm-macvtap/README.md +++ b/kvm-macvtap/README.md @@ -45,7 +45,7 @@ Note that you'll also need a VNC client to connect the console of the nested KVM 8. Now launch a KVM VM using this command line (the CirrOS disk image was downloaded already by Ansible): sudo virt-install --name=cirros --ram=256 --vcpus=1 \ - disk path=./cirros-0.3.2-x86_64-disk.img,format=qcow2 \ + --disk path=./cirros-0.3.2-x86_64-disk.img,format=qcow2 \ --import --network network:macvtap-net --vnc 9. Determine the VNC display allocated to the new VM with this command (it should be `127.0.0.1:0`):