実は、Windows 10 で qemu を使用して Ubuntu arm64 イメージを構築する際に問題が発生しています。packer を使用して qemu VM を作成していますが、正常に動作しますが、ブート パラメータを入力するとハングします。
Packer を起動した後、次のエラーとともに Popup qemu Display が表示されます。
-> Guest has not initialied the display (yet) <-
ディスプレイ設定にいくつかの Quemu 引数を試してみましたが、まだ機能しません。助けを求めています。
My Packer Version : 1.7.8
Ubuntu Version : 21.10 live server arm64 | 20.04 live server arm64 (test both)
qemu version : 6.2
私のパッカー設定:
source "qemu" "ubuntu-server" {
boot_command = ["<esc><wait>", "<esc><wait>", "<enter><wait>", "/install/vmlinuz<wait>", " initrd=/install/initrd.gz", " auto-install/enable=true", " debconf/priority=critical", " preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg<wait>", " -- <wait>", "<enter><wait>"]
http_directory = "../config/http"
iso_checksum = "${UBUNTU_ISO_CHECKSUM}"
iso_urls = ["${UBUNTU_ISO_NAME}"]
output_directory = "output/live-server"
shutdown_command = "sudo shutdown -P now"
disk_size = "60000"
format = "qcow2"
ssh_handshake_attempts = "20"
ssh_password = "XXXX"
ssh_pty = "true"
ssh_timeout = "245m"
ssh_username = "XXXXX"
vm_name = "${VM_NAME}"
net_device = "virtio-net"
disk_interface = "virtio"
boot_wait = "15s"
headless = "false"
cpus = 4
memory = 8192
qemu_binary = "qemu-system-arm.exe"
qemuargs = [
[ "-machine", "virt" ],
[ "-device", "virtio-gpu-pci" ],
[ "-boot", "strict=off" ],
[ "-cpu", "max" ],
[ "-m", "8192M" ],
[ "-smp", "4" ],
[ "-device", "qemu-xhci" ],
[ "-display", "sdl" ],
[ "-vga", "std" ]
]
}