Tag Archives: qemu

balena engine is in fact a docker engine

balena engine is in fact a docker engine

balena arm containers on x86

balena base images on docker hub

balenalib image naming

<hw>-<distro>-<lang_stack>:<lang_ver>-<distro_ver>-(build|run)-<date>

balena base images in github

balena qemu

balena labs

Advertisement

balena.io now supports KVM QEMU #IOT nodes

balena.io now supports KVM QEMU #IOT nodes

Run the following to start the image:

on systems with KVM support:

$ qemu-system-x86_64 -drive \
file=resin-image-qemux86-64.img,media=disk,cache=none,format=raw \
-net nic,model=virtio -net user -m 512 -nographic \
-machine type=pc,accel=kvm -smp 4 -cpu host

on systems without KVM support:

$ qemu-system-x86_64 -drive \
file=resin-image-qemux86-64.img,media=disk,cache=none,format=raw \
-net nic,model=virtio -net user -m 512 -nographic \
-machine type=pc -smp 4

Tweak -smp and -cpu parameters based on the CPU of the machine qemu is running on. -cpu parameter needs to be dropped on OSX and Windows.

Tweak -nographic and -m 512 to set the display of qemu and memory respectively.