我正在使用 kvm,我想在其上运行 ubuntu 服务器。我的目标是运行 db2 数据库实例进行开发。
有没有现成的 ubuntu qcow2 在线镜像可用于此目的?或者我应该从 live cd 安装它?
我找到了这个说明UEC/图片,但在启动时我得到:
$ kvm -fda ${floppy} -drive if=virtio,file=./disk.img -boot a
...
Nothing to boot: No such file or directory (http://ipxe.org/...)
No more network devices
No bootable device.
解决方案:
我没有在网上找到预安装的 ubuntu 虚拟机映像,所以解决方案是自行安装。
答案1
您当然不应该从软盘安装它。尝试以下方法:
kvm -enable-kvm \
-drive file=./disk.img,index=0,media=disk,if=virtio \
-drive file=./UBUNTU.iso,index=1,media=cdrom \
-boot cd ...