Jump to content

Pmbootstrap/Troubleshooting/QEMU

From postmarketOS Wiki
Revision as of 17:02, 5 July 2018 by Ollieparanoid (talk | contribs) (Created page with "This page is about debugging problems with <code>pmbootstrap qemu</code>. == Alternative display options == === GTK instead of SDL === The virtual machine's output window can...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page is about debugging problems with pmbootstrap qemu.

Alternative display options

GTK instead of SDL

The virtual machine's output window can be drawn with either SDL or GTK. The default is SDL, and in case that does not work, you can try to switch to GTK:

$ pmbootstrap qemu --display=gtk

Disable OpenGL

Note Some user interfaces may not work properly with OpenGL disabled.

Graphics rendering with OpenGL is enabled by default. You can disable it by appending ,gl=off to your display option. Examples:

$ pmbootstrap qemu --display=sdl,gl=off
$ pmbootstrap qemu --display=gtk,gl=off

Using SPICE

Another option is using the SPICE protocol. The following command will cause QEMU to start a SPICE server, that listens on localhost, and connect a client right afterwards. Supported clients are remote-viewer and spicy (one of these needs to be installed on your host system). This method supports 3D hardware accelleration as well.

$ pmbootstrap qemu --spice

Using QEMU from the host system

Since !1612, pmbootstrap is using the QEMU binary from the Alpine chroots. That way you don't have to install QEMU on your host system and everybody uses the same version. However, for debugging purpose you might want to use the QEMU binaries from your host system instead:

$ pmbootstrap qemu --host-qemu

This option can be combined with --display or --spice.