http://www.it165.net/os/html/201309/6183.htmlhtml
一、virt-install 啓動虛機node
virt-install \linux
-n www \api
-r 2048 \服務器
-f /var/kvm/p_w_picpaths/www.img \網絡
-s 20 \app
--vcpus=2 \dom
--os-type linux \ide
--os-variant=debianwheezy \工具
--network bridge=br0 \
--nographics \
--location='http://mirrors.163.com/debian/dists/wheezy/main/installer-amd64/' \
--extra-args='console=tty0 console=ttyS0,115200n8 serial'
其中location若是是網絡的url能夠網絡啓動虛機,可是選擇包的時候應該儘可能的少,保持一個基本的和SSH服務便可,否則下載很浪費資源。
二、克隆虛機
virt-clone -o debian001 -n debian002 -f /vHost/vm/debian002.img
三、導出虛機配置dumpxml
virsh dumpxml wintest01 > /etc/libvirt/qemu/wintest02.xml
KVM虛擬機的管理主要是經過virsh命令對虛擬機進行管理。
(1) KVM虛擬機默認配置文件位置: /etc/libvirt/qemu/
autostart目錄是配置kvm虛擬機開機自啓動目錄。
(2) virsh命令幫助
# virsh -help
或直接virsh命令和,再執行子命令。以下所示。
[root@node1 ~]# virsh
歡迎使用 virsh,虛擬化的交互式終端。
輸入:'help' 來得到命令的幫助信息
'quit' 退出
virsh # help
……
(3) 查看kvm虛擬機狀態
# virsh list --all
# virsh start oeltest01
(1) 關機
默認狀況下virsh工具不能對linux虛擬機進行關機操做,linux操做系統須要開啓與啓動acpid服務。在安裝KVM linux虛擬機必須配置此服務。
# chkconfig acpid on
# service acpid restart
virsh關機
# virsh shutdown oeltest01
(2) 強制關閉電源
# virsh destroy wintest01
# virsh create /etc/libvirt/qemu/wintest01.xml
# virsh autostart oeltest01
autostart目錄是kvm虛擬機開機自啓動目錄,能夠看到該目錄中有KVM配置文件連接。
# virsh dumpxml wintest01 > /etc/libvirt/qemu/wintest02.xml
KVM虛擬機配置文件能夠經過這種方式進行備份。
(1) 刪除kvm虛擬機
# virsh undefine wintest01
說明:該命令只是刪除wintest01的配置文件,並不刪除虛擬磁盤文件。以下圖所示。
(2) 從新定義虛擬機配置文件
經過導出備份的配置文件恢復原KVM虛擬機的定義,並從新定義虛擬機。
# mv /etc/libvirt/qemu/wintest02.xml /etc/libvirt/qemu/wintest01.xml
# virsh define /etc/libvirt/qemu/wintest01.xml
# virsh edit wintest01
virsh edit將調用vi命令編輯/etc/libvirt/qemu/wintest01.xml配置文件。也能夠直接經過vi命令進行編輯,修改,保存。
能夠但不建議直接經過vi編輯。
[root@node1 qemu]# vi /etc/libvirt/qemu/wintest01.xml
01.
&
lt
;!--
02.
WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE
03.
OVERWRITTEN AND LOST. Changes to this xml configuration should be made using:
04.
virsh edit wintest01
05.
or other application using the libvirt API.
06.
--&
gt
;
07.
&
lt
;domain
type
='kvm'&
gt
;
08.
&
lt
;name&
gt
;wintest01&
lt
;/name&
gt
;
09.
&
lt
;uuid&
gt
;fe31ea48-7d6a-f3cb-cede-2f9bd9dec2bd&
lt
;/uuid&
gt
;
10.
&
lt
;memory unit='KiB'&
gt
;524288&
lt
;/memory&
gt
;
11.
&
lt
;currentMemory unit='KiB'&
gt
;524288&
lt
;/currentMemory&
gt
;
12.
&
lt
;vcpu placement='static'&
gt
;2&
lt
;/vcpu&
gt
;
13.
&
lt
;os&
gt
;
14.
&
lt
;
type
arch='x86_64' machine='rhel6.4.0'&
gt
;hvm&
lt
;/
type
&
gt
;
15.
&
lt
;boot dev='hd'/&
gt
;
16.
&
lt
;/os&
gt
;
17.
&
lt
;features&
gt
;
18.
&
lt
;acpi/&
gt
;
19.
&
lt
;apic/&
gt
;
20.
&
lt
;pae/&
gt
;
21.
&
lt
;/features&
gt
;
22.
&
lt
;clock offset='utc'/&
gt
;
23.
&
lt
;on_poweroff&
gt
;destroy&
lt
;/on_poweroff&
gt
;
24.
&
lt
;on_reboot&
gt
;restart&
lt
;/on_reboot&
gt
;
25.
&
lt
;on_crash&
gt
;restart&
lt
;/on_crash&
gt
;
26.
&
lt
;devices&
gt
;
27.
&
lt
;emulator&
gt
;/usr/libexec/qemu-kvm&
lt
;/emulator&
gt
;
28.
&
lt
;disk
type
='
file
' device='disk'&
gt
;
29.
&
lt
;driver name='qemu'
type
='raw' cache='none'/&
gt
;
30.
&
lt
;
source
file
='/data/wintest01.img'/&
gt
;
31.
&
lt
;target dev='hda' bus='ide'/&
gt
;
32.
&
lt
;address
type
='drive' controller='0' bus='0' target='0' unit='0'/&
gt
;
33.
&
lt
;/disk&
gt
;
34.
&
lt
;disk
type
='block' device='cdrom'&
gt
;
35.
&
lt
;driver name='qemu'
type
='raw'/&
gt
;
36.
&
lt
;target dev='hdc' bus='ide'/&
gt
;
37.
&
lt
;
readonly
/&
gt
;
38.
&
lt
;address
type
='drive' controller='0' bus='1' target='0' unit='0'/&
gt
;
39.
&
lt
;/disk&
gt
;
40.
&
lt
;controller
type
='usb' index='0'&
gt
;
41.
&
lt
;address
type
='pci' domain='0x0000' bus='0x00' slot='0x01'
function
='0x2'/&
gt
;
42.
&
lt
;/controller&
gt
;
43.
&
lt
;controller
type
='ide' index='0'&
gt
;
44.
&
lt
;address
type
='pci' domain='0x0000' bus='0x00' slot='0x01'
function
='0x1'/&
gt
;
45.
&
lt
;/controller&
gt
;
46.
&
lt
;interface
type
='bridge'&
gt
;
47.
&
lt
;mac address='52:54:00:2b:2f:fe'/&
gt
;
48.
&
lt
;
source
bridge='br0'/&
gt
;
49.
&
lt
;address
type
='pci' domain='0x0000' bus='0x00' slot='0x03'
function
='0x0'/&
gt
;
50.
&
lt
;/interface&
gt
;
51.
&
lt
;serial
type
='pty'&
gt
;
52.
&
lt
;target port='0'/&
gt
;
53.
&
lt
;/serial&
gt
;
54.
&
lt
;console
type
='pty'&
gt
;
55.
&
lt
;target
type
='serial' port='0'/&
gt
;
56.
&
lt
;/console&
gt
;
57.
&
lt
;input
type
='mouse' bus='ps2'/&
gt
;
58.
&
lt
;graphics
type
='vnc' port='5911' autoport='no' listen='0.0.0.0'&
gt
;
59.
&
lt
;listen
type
='address' address='0.0.0.0'/&
gt
;
60.
&
lt
;/graphics&
gt
;
61.
&
lt
;video&
gt
;
62.
&
lt
;model
type
='cirrus' vram='9216' heads='1'/&
gt
;
63.
&
lt
;address
type
='pci' domain='0x0000' bus='0x00' slot='0x02'
function
='0x0'/&
gt
;
64.
&
lt
;/video&
gt
;
65.
&
lt
;memballoon model='virtio'&
gt
;
66.
&
lt
;address
type
='pci' domain='0x0000' bus='0x00' slot='0x04'
function
='0x0'/&
gt
;
67.
&
lt
;/memballoon&
gt
;
68.
&
lt
;/devices&
gt
;
69.
&
lt
;seclabel
type
='none'/&
gt
;
70.
&
lt
;/domain&
gt
;
配置virsh console見下文
kvm虛擬化學習筆記(六)之kvm虛擬機控制檯登陸配置
# virsh console oeltest01
(1) 掛起服務器
# virsh suspend oeltest01
(2) 恢復服務器
# virsh resume oeltest01
virsh命令豐富。能夠執行各類維護任務,本文只是從維護與管理的角度例舉了經常使用的命令,爲該命令的使用提供一個思路。