KVM创建虚拟机

Posted cy60

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KVM创建虚拟机相关的知识,希望对你有一定的参考价值。

1.上传镜像到/opt目录

2.创建虚拟磁盘文件

[[email protected] ~]# qemu-img create -f qcow2 /tmp/centos.qcow2 10G
Formatting /tmp/centos.qcow2, fmt=qcow2 size=10737418240 encryption=off cluster_size=65536 lazy_refcounts=off 

3.创建虚拟机

virt-install --virt-type kvm --name centos --ram 1024 >   --disk /tmp/centos.qcow2,format=qcow2 >   --network network=default >   --graphics vnc,listen=0.0.0.0 --noautoconsole >   --os-type=linux --os-variant=centos7.0 >   --location=/opt/CentOS-7-x86_64-DVD-1810.iso

4.使用TightVNC Viewer远程连接

技术图片

5.连接后进行安装CentOS7

技术图片

 

以上是关于KVM创建虚拟机的主要内容,如果未能解决你的问题,请参考以下文章

编写shell脚本实现一键创建KVM虚拟机

qemu-system-x86_64方式创建KVM虚拟机

qemu-system-x86_64方式创建KVM虚拟机

KVM:virt-install创建虚拟机

Linux使用已有KVM硬盘文件快速创建虚拟机

搭建kvm虚拟化平台和管理kvm虚拟化平台