どうすれば仮想マシンを作成できますか CLIから ?
仮想マシンの作成
First, download an ISO cd image of some OS you want to run. For Ubuntu, you can find these at: http://www.ubuntu.com/getubuntu/download Double click on the name of the Host. The Status column should read Active Right click on the name of the Host, and select New This will start a wizard to guide you through the rest of your VM creation Enter your virtual machine details Name: foo Choose Local install media (ISO image or CDROM), or you can use another method if you know what you're doing Forward Locate your install media Use ISO image Browse to find the ISO you downloaded earlier Optional: Select the matching OS Type Optional: Select the matching Version Forward
主に私自身の啓発のためだけに。
ただ使用する:
virt-install \
--name vm_name \
--ram=2048 \
--vcpus=2 \
--disk pool=guest_images,size=30,bus=virtio,format=qcow2 \
--cdrom /var/iso/debian.iso \
--network bridge=kvmbr0,model=virtio \
--graphics vnc,listen=0.0.0.0,password=Qwerty1234 \
--boot cdrom,hd,menu=on
どこ /var/iso/debian.iso
-ISOイメージへのパス
guest_images
-ディスクプール、VMの前に作成する必要があります
私はこの種類のqemuコマンドで古い方法でqemu-kvmをよく使用します。
qemu-img create mydisk.img 10G
qemu-system-x86_64 -boot d -cdrom image.iso -m 512 -hda mydisk.img
virshはqemu-kvmを起動します。ただし、設定ファイルが必要です。場合によっては、このすべてのxml行をバイパスして、vmを起動する方が簡単な場合があります。