CentOS 6
Sponsored Link

仮想マシン作成#22011/07/11

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

[root@dlp ~]#
virt-clone --original template --name mail --file /var/kvm/images/mail.img

Allocating 'mail.img'     | 20 GB 01:44
Clone 'mail' created successfully.
[root@dlp ~]#
virsh start mail --console

Domain mail started
Connected to domain mail
CentOS Linux release 6.0 (Final)
Kernel 2.6.32-71.el6.x86_64 on an x86_64
localhost.localdomain login:    
# 起動完了
[2] コピーして作成したゲストOSでは、ネットワークインターフェースの名前とMACアドレスがコピー元のゲストOSの設定のままのため、 そのままではネットワークが起動しません。よって、ネットワーク設定を修正しておきます。
[root@localhost ~]#
eth1     Link encap:Ethernet HWaddr 52:54:00:67:8C:A1
    BROADCAST MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0br>     collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
      Interrupt:11
lo     Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0br>     collisions:0 txqueuelen:0
      RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
[root@localhost ~]#
cd /etc/sysconfig/network-scripts

[root@localhost network-scripts]#
mv ifcfg-eth0 ifcfg-eth1

[root@localhost network-scripts]#
vi ifcfg-eth1
# 以下のように名前とMACアドレスを正しいものに修正

# IPアドレスを固定設定にする場合は初期設定参照

DEVICE=
eth1

BOOTPROTO=dhcp
HWADDR=
52:54:00:67:8C:A1

ONBOOT=yes
[root@localhost network-scripts]#
/etc/rc.d/init.d/network restart

Shutting down loopback interface:     [  OK  ]
Bringing up loopback interface:     >[  OK  ]
Bringing up interface eth1:
Determining IP information for eth1... done.
[  OK  ]
[root@localhost network-scripts]#
eth1     Link encap:Ethernet HWaddr 52:54:00:67:8C:A1
    inet addr:10.0.0.205 Bcast:10.0.0.255 Mask:255.255.255.0
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:12 errors:0 dropped:0 overruns:0 frame:0
    TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1216 (1.1 KiB) TX bytes:1277 (1.2 KiB)
      Interrupt:11 Base address:0xc000
lo     Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:6 errors:0 dropped:0 overruns:0 frame:0
    TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:828 (828.0 b) TX bytes:828 (828.0 b)
関連コンテンツ