Difference between revisions of "User:Kent Poots/drafts"
Kent Poots (talk | contribs) |
Kent Poots (talk | contribs) |
||
Line 2: | Line 2: | ||
*[[User:Kent Poots/OPS335 Assignment1]] | *[[User:Kent Poots/OPS335 Assignment1]] | ||
+ | |||
+ | How to install Cloud images on Centos | ||
+ | Overview: | ||
+ | #Download the image in raw format | ||
+ | #Use virt-install, e.g.: | ||
+ | <p> | ||
+ | # virt-install -n vmname -r 2048 --os-type=windows --os-variant=win7 --disk /kvm/images/disk/vmname_boot.img,device=disk,bus=virtio -w bridge=br0,model=virtio --vnc --noautoconsole --import | ||
+ | |||
+ | |||
+ | Reference: | ||
+ | |||
+ | *note: not tested ! http://blog.allanglesit.com/2011/03/kvm-guests-using-virt-install-to-import-an-existing-disk-image/ |
Revision as of 09:58, 23 September 2014
OPS335 Supplementary Material
How to install Cloud images on Centos Overview:
- Download the image in raw format
- Use virt-install, e.g.:
- virt-install -n vmname -r 2048 --os-type=windows --os-variant=win7 --disk /kvm/images/disk/vmname_boot.img,device=disk,bus=virtio -w bridge=br0,model=virtio --vnc --noautoconsole --import