Hyper-V 2세대 가상 머신에 Packager를 사용하여 Ubuntu 20.04.06을 설치하려고 합니다.
boot_command를 다음과 같이 사용하려고 하면:
boot_command = [
"<esc><esc><esc><wait>",
"linux /casper/vmlinuz ",
"fsck.mode=skip ip=192.168.160.110::192.168.160.254:255.255.255.0::::1.1.1.1 autoinstall 'ds=nocloud-net;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/' ",
"<enter>",
"initrd /casper/initrd<enter>",
"boot<enter>"
]
40분을 기다려도 여전히 같은 결과가 나타납니다. 두 번째 tty를 열면 깜박이는 대시만 볼 수 있고 그 이상은 볼 수 없습니다.
또한 이스케이프 문자를 사용해 보았습니다.
"fsck.mode=skip ip=192.168.160.110::192.168.160.254:255.255.255.0::::1.1.1.1 autoinstall \"ds=nocloud-net;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/\" ",
결과는 같고 동결되었습니다.
그런 다음 압축된 호스트의 IP를 수동으로 입력해 보았더니 모든 것이 예상대로 작동했습니다.
"fsck.mode=skip ip=192.168.160.110::192.168.160.254:255.255.255.0::::1.1.1.1 autoinstall 'ds=nocloud-net;s=http://192.168.160.10:80/' "