Tag: qemu

Cross package Node app for ARM using QEMU and Docker

Download 2020-08-20-raspios-buster-armhf-lite.zip from the official site Install required tools ``bash sudo pacman -S unzip util-linux docker ` Start Docker service `bash sudo systemctl start docker.service ` Add yourself into the docker group, otherwise permissions are needed...

How to emulate Raspios natively in QEMU

Download 2020-08-20-raspios-buster-armhf-lite.zip from the official site Install required tools ``bash sudo pacman -S unzip util-linux qemu qemu-arch-extra ` Minimal required QEMU version is 5.1 `bash qemu-system-aarch64 --version QEMU emulator version 5.1.0 ` Ethernet is share...

How to run latest Node on an emulated RevPi

Download the latest RevPi Stretch image, based on Raspbian Buster kunbus_release from the official site Download kernel-qemu-4.19.50-buster and versatile-pb-buster.dtb from dhruvvyas90/qemu-rpi-kernel Install required tools ``bash sudo pacman -S qemu unzip qemu-arch-extra `...

How not to create a Node executable for ARM

There is one thing I would like to do properly for a quite some time: Create executable NodeJS application on an x64 machine for ARMv6 Now I have mastered the process to some extent, with the following steps: 1. Write an app on a host x64 machine 1. scp sources to the target ARMv...