虚拟kvm

virsh基本操作

1)列出当前正在运行的虚拟机

 [root@root ~]# virsh list 
 **Id    Name                           State
----------------------------------------------------
 1     node1                          running**

查看虚拟机的信息

[root@root ~]# virsh  dominfo   nova

管理虚拟机

1)启动虚拟机

[root@root ~]# virsh start node1

2)重启虚拟机

[root@root ~]# virsh reboot node1

3)强制关闭虚拟机

[root@root ~]# virsh destroy node1

4)设置虚拟机开机自动运行

root@root ~]# virsh autostart node1

查看虚拟机网卡信息

[root@root ~]# virsh domiflist  node1

接口 类型 源 型号 MAC

vnet0 bridge vbr virtio 52:54:00:5f:8b:11
vnet1 bridge private1 virtio 52:54:00:19:a4:f3
6)查看虚拟机硬盘信息

[root@root ~]# virsh domblklist  node1

目标 源

vda /var/lib/libvirt/images/node1.img
vdb /var/lib/libvirt/images/disk.img

qemu-img基本操作管理

创建一个新的镜像盘文件

qemu-img命令格式:qemu-img 命令 参数 块文件名称 大小
[root@root ~]# qemu-img create   -f qcow2 disk.img 50G    //qcow2为创建的格式
Formatting 'disk.img', fmt=qcow2 size=53687091200 encryption=off cluster_size=65536 lazy_refcounts=off

2)使用后端模板文件创建一个新的镜像盘文件
备注:-b使用后端模板文件

[root@root~]# qemu-img create -b disk.img -f qcow2 disk1.img
Formatting 'disk1.img', fmt=qcow2 size=53687091200 backing_file='disk.img' encryption=off cluster_size=65536 lazy_refcounts=off

3)使用后端模板文件创建一个16G的镜像盘文件

 [root@root ~]# qemu-img create -b disk.img -f qcow2 disk2.img  16G
Formatting 'disk1.img', fmt=qcow2 size=53687091200 backing_file='disk.img' encryption=off cluster_size=65536 lazy_refcounts=off

查看镜像文件的信息

[root@root ~]# qemu-img  info disk1.img 
image: disk.img
file format: qcow2
virtual size: 50G (53687091200 bytes)
disk size: 196K
cluster_size: 65536
Format specific information:
    compat: 1.1
    lazy refcounts: false | help_topic   |
| innodb_index_stats        |
| innodb_table_stats        |
| ndb_binlog_index          |
| plugin                     |
| proc                       |
| procs_priv                 |
| proxies_priv               |
| server_cost                |
| servers                    |
| slave_master_info         |

你可能感兴趣的:(云)