我尝试在 QEMU 中将 ubuntu-16.04-server-amd64.iso 安装为虚拟机。
这是我生成图像文件的命令:
qemu-img create -f qcow2 confImage 100G
创建映像文件后,我使用以下命令安装了 ubuntu:
qemu-system-x86-64 -cdrom /home/username/Downloads/ubuntu-16.04-server-amd64.iso -boot order=d -drive file=confImage,format=qcow2
安装进行得很顺利,所以我随后启动了它:
qemu-system-x86_64 confImage
但是在 GRUB-Loader 中选择 ubuntu 后出现以下错误:
有人知道我做错了什么吗?
多谢!
答案1
尝试
qemu-system-x86_64 -hda confImage -m 1024
答案2
在我的情况下,这是 CPU 错误。我不得不补充-cpu host