Ubuntu 10.04
Sponsored Link

仮想マシン作成#22010/07/19

  テンプレートとしてとっておいたディスクイメージから新たな仮想マシンを作成します。

[1] 仮想マシン作成#1でテンプレートとしてとっておいた ディスクイメージと定義ファイルをコピーして新たな仮想マシンを作成します。
# テンプレート用ディスクイメージと定義ファイルを新たな仮想マシン用にコピー

root@ubuntu:~#
cp guest.img /var/kvm/images/mail.img

root@ubuntu:~#
cp guest.xml /etc/libvirt/qemu/mail.xml


root@ubuntu:~#
uuidgen -t
   
# UUIDを生成

44bc51c4-93ec-11df-99ae-0022683d8288    
# 控えておく


root@ubuntu:~#
vi /etc/libvirt/qemu/mail.xml


<domain type='kvm'>
 
# 名前変更

  <name>
mail
</name>
 
# 上で生成したUUIDに変更

  <uuid>
44bc51c4-93ec-11df-99ae-0022683d8288
</uuid>
  <memory>1048576</memory>
  <currentMemory>1048576</currentMemory>
  <vcpu>2</vcpu>
  <os>
    <type arch='x86_64' machine='pc-0.12'>hvm</type>
    <boot dev='hd'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <pae/>
  </features>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>restart</on_crash>
  <devices>
    <emulator>/usr/bin/kvm</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='raw'/>
     
# ディスクイメージ変更

      <source file='/var/kvm/images/
mail.img
'/>
      <target dev='vda' bus='virtio'/>
    </disk>
    <interface type='bridge'>
     
# 以下のmac addressの行は削除

      <mac address='52:54:00:bc:8f:f3'/>
      <source bridge='br0'/>
      <model type='virtio'/>
    <console type='pty'>
      <target port='0'/>
    </console>
    <console type='pty'>
      <target port='0'/>
    </console>
  </devices>
</domain>

root@ubuntu:~#
virsh define /etc/libvirt/qemu/mail.xml
 
# 変更を反映

Domain mail defined from /etc/libvirt/qemu/mail.xml
root@ubuntu:~#
virsh start mail --console

Domain mail started
Connected to domain mail

Ubuntu 10.04 LTS www ttyS0

www login:    
# 起動完了 (ホスト名はコピー元のままなのでログインして修正しておく)


root@www:~#
vi /etc/hostname


# ホスト名を任意のものに修正

mail


root@www:~#
logout

Ubuntu 10.04 LTS mail ttyS0

mail login:    
# 完了
関連コンテンツ