如何创建 QEMU 虚拟机

zhangsyi 2020-03-26

目录

创建虚拟机镜像

$ qemu-image create test.img 10G
$ qemu-image info test.img

安装操作系统到虚拟机镜像

$ qemu-system-x86_64 --enable-kvm -m 1024 -hda test.img -cdrom ubuntu.iso -boot order=d

启动虚拟机

$ qemu-system-x86_64 --enable-kvm -m 1024 -hda test.img -boot order=c

相关推荐