Questions tagged [qemu]

QEMU (short for "Quick EMUlator") is a free and open-source hosted virtual machine monitor that performs hardware virtualization.

QEMU is a hosted virtual machine monitor: It emulates central processing units through dynamic binary translation and provides a set of device models, enabling it to run a variety of unmodified guest operating systems. It also provides an accelerated mode for supporting a mixture of binary translation (for kernel code) and native execution (for user code), in the same fashion as VMware Workstation and VirtualBox do. QEMU can also be used purely for CPU emulation for user-level processes, allowing applications compiled for one architecture to be run on another.

QEMU began emulating the complete Raspberry Pi with version 2.6. Previuosly , the slightly incomatible "versatilepb" platform had to be used.

92 questions
2
votes
1 answer

Can't push qemu Debian image to Pi

I was following Keiki's instructions and got stuck on the Debian image. Although I installed it successfully; I just can't see it on my hard drive (using Windows). I can check it with qemu-img but it is simply not there. H:\Program…
mystery
  • 518
  • 2
  • 11
2
votes
1 answer

Compiling a custom RPi kernel for QEMU

I just compiled a custom kernel for Raspberry pi. However, when trying to boot it up using QEMU I seem to be getting errors as shown here. Is there anything obvious that I'm doing wrong? Is there any more information I can provide to make the…
user7340
1
vote
0 answers

QEMU wrapper script for labelprinter driver not working

I am trying to get a i386 raster binary for CUPS to work on a Raspberry Pi 3b. The driver is shipped with a 32bit raster script called rastertort58_80 This file is placed in /usr/lib/cups/filter, but I have renamed it to rastertort58_80.x86 I have…
1
vote
1 answer

Unable to login in QEMU Raspberry Pi 3B

I am trying to emulate a Raspberry Pi 3B using QEMU 7 with the following options: qemu-system-aarch64 \ -M raspi3b \ -cpu cortex-a53 \ -append "ttyAMA0,115200 kgdboc=ttyAMA0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait" \ -dtb…
AQUATH
  • 11
  • 4
1
vote
0 answers

Why does qemu work with chroot, but not with systemd-nspawn?

Here's how I installed qemu/the system: sudo apt-get install qemu qemu-user qemu-user-static binfmt-support debootstrap binutils systemd-nspawn systemd-container #All deps debootstrap --foreign --arch=i386 sttretch ./x86/…
SuperPizz
  • 81
  • 5
0
votes
0 answers

How to get QEMU/RPi emulator to work for first time in Windows

On my Windows machine, I have QEMU and RPI emulation working successfully. I also have the code I grabbed off an SD card from a working Raspberry Pi. How do I now execute this code within my emulator? Do I need to create an image file first from…
Chris
  • 1
  • 1
0
votes
1 answer

Checkinstall fails to package QEMU to a deb

I compiled QEMU for my Raspberry pi and want to package it to a deb so I don't need to compile it every time I reflash (it takes a few hours). but every time I run sudo checkinstall I get errors (bellow what I think the error is, I includded the…