一、qemu-kvm创建虚拟机示例
使用iso镜像文件在虚拟机上通过KVM技术启动一个虚拟机实例:
1.准备
- ios镜像文件:ubuntu-18.04.4-live-server-amd64.iso
- 装载kvm模块的虚拟机;
2.使用qemu-img创建qcow2的文件
[root@master01 opt]# qemu-img create -o size=10G,preallocation=metadata -f qcow2 /opt/pe.qcow2 Formatting '/opt/pe.qcow2', fmt=qcow2 size=10737418240 encryption=off cluster_size=65536 preallocation='metadata' lazy_refcounts=off
3.使用qemu-kvm创建虚拟机
[root@master01 ~]# qemu-kvm -m 512 -smp 2 -cpu host -drive file=/opt/pe.qcow2,media=disk -drive file=/opt/ubuntu-18.04.4-live-server-amd64.iso,media=cdrom -boot order=dc,once=d VNC server running on `::1:5900'
评论前必须登录!
注册