web-dev-qa-db-ja.com

Ubuntu ServerはQEMUで動作しません:KERNEL PANIC

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を選択すると、次のエラーが表示されます。

enter image description here

誰かが私が間違っていることを知っていますか?

どうもありがとう!

5
texNewbie

試して

qemu-system-x86_64 -hda confImage -m 1024

3
Qasim