Debian 6.0
Sponsored Link

仮想マシン作成#22011/03/06

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

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

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

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


root@dlp:~#
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'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </disk>
    <interface type='bridge'>
     
# 以下のmac addressの行は削除

      <mac address='52:54:00:52:31:12'/>
      <source bridge='br0'/>
      <model type='virtio'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </interface>
    <serial type='pty'>
      <target port='0'/>
    </serial>
    <console type='pty'>
      <target port='0'/>
    </console>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
    </memballoon>
  </devices>
</domain>

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

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

Domain mail started
Connected to domain mail

Debian GNU/Linux 6.0 www ttyS0

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


root@www:~#
vi /etc/hostname


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

mail


root@www:~#
logout

Debian GNU/Linux 6.0 www ttyS0

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