QEMU Aarch 64 virt 아키텍처에서 Debian 10을 빌드하려고 합니다. 이를 위해 나는 따른다이 가이드.
Debian 이미지에서 두 부분으로 구성된 커널 설치 프로그램을 가져왔습니다.
wget -O installer-linux http://ftp.debian.org/debian/dists/buster/main/installer-amd64/current/images/netboot/debian-installer/amd64/linux
wget -O installer-initrd.gz http://ftp.debian.org/debian/dists/buster/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz
그런 다음 16G 빈 디스크 hda.qcow2를 생성한 후 qemu-system-aarch64 명령을 시작하여 커널을 빌드하고 다음과 같이 Debian 호스트에서 설치 프로그램을 실행했습니다.
qemu-system-aarch64 -M virt -m 2048 -cpu cortex-a53 \
-kernel installer-linux -initrd installer-initrd.gz \
-drive if=none,file=hda.qcow2,format=qcow2,id=hd \
-device virtio-blk-pci,drive=hd -netdev user,id=mynet \
-device virtio-net-pci,netdev=mynet -nographic \
-no-reboot -append "console=ttyAMA0"
그러나 이 명령은 "자세한" 메시지를 표시하지 않으며 "그냥" 몇 시간 동안 실행됩니다. 여러 번 시도했지만 설치된 커널이 표시되지 않습니다. 이 작업은 무엇을 수행해야 하며 실행하는 데 얼마나 걸리나요? 튜토리얼에서 언급한 대로 대화형 메시지가 없습니다. 나는 요원 뒤에 있어요. 구성해야 할 것이 있나요? 오류 로그 메시지를 어떻게 확인할 수 있나요? "top" 명령은 qemu-system-aarch64 실행 파일이 90% CPU에서 실행되고 있음을 보여줍니다.
도와주세요.
감사해요