Regular/arm
< Regular
Running in QEMU
- Install qemu package supporting aarch64 (ARMv8) and/or armh (ARMv7hf) ABI; e.g., for ALT/x86_64 host system:
apt-get install qemu-system-aarch64-core qemu-system-arm-core; - Download u-boot-qemu for aarch64/armh arches (replace <$arch/u-boot.bin> below with the path to the corresponding file extracted from the package);
- Download one of img.xz, extract and run QEMU (replace <IMAGE> with the path to the downloaded image):
aarch64
Also see more up-to-date version in Russian: https://www.altlinux.org/Ports/aarch64/QEMU
$ qemu-system-aarch64 \ -machine virt -cpu cortex-a57 -m 2048 -smp 4 \ -bios <aarch64/u-boot.bin> \ -drive if=none,id=sda,format=raw,file=<IMAGE> \ -device virtio-blk-device,drive=sda \ -device virtio-keyboard -device virtio-tablet \ -device virtio-gpu,xres=1366,yres=768 -nographic -vnc :0
armh
Also see more up-to-date version in Russian: https://www.altlinux.org/Ports/armh/QEMU
$ qemu-system-arm \ -machine virt -m 2048 -smp 4 \ -bios <armh/u-boot.bin> \ -drive if=none,id=sda,format=raw,file=<IMAGE> \ -device virtio-blk-device,drive=sda \ -device virtio-keyboard -device virtio-tablet \ -device virtio-gpu,xres=1366,yres=768 -nographic -vnc :0
The text output will be directed to the terminal. Graphics can be accessed through VNC:
remote-viewer vnc://localhost:5900