QEMU: Difference between revisions
Appearance
m →See also: change links to direct links so they don't need to be redirected |
No edit summary |
||
Line 8: | Line 8: | ||
The <code>--image-size=2G</code> parameter will increase the image size to 2GB, so you don't instantly run out of space (by default the image size is as small as possible). Check out <code>pmbootstrap qemu --help</code> for more options, such as performance tweaks. | The <code>--image-size=2G</code> parameter will increase the image size to 2GB, so you don't instantly run out of space (by default the image size is as small as possible). Check out <code>pmbootstrap qemu --help</code> for more options, such as performance tweaks. | ||
=== Qemu on Debian stretch === | === Qemu on Debian stretch === | ||
{{note|This also applies to '''Ubuntu''' Artful and below, Bionic likely will not have it enabled either - [https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1553999 Launchpad bug.]}} | |||
Qemu on Debian does not include SDL-support by default. To use pmbootstrap on Debian you have to do the following: | Qemu on Debian does not include SDL-support by default. To use pmbootstrap on Debian you have to do the following: |
Revision as of 02:10, 17 March 2018
Right now we use the QEMU version installed on the host system, but we want to change that: #1158 |
Building and starting a QEMU image
pmbootstrap init # Choose a qemu-* device (x86_64: amd64, arm: vexpress-soc) pmbootstrap install --no-fde pmbootstrap qemu --image-size=2G
Note: The amd64
version is recommended if you don't know which one to choose. See the device specific pages (links below) for the differences.
The --image-size=2G
parameter will increase the image size to 2GB, so you don't instantly run out of space (by default the image size is as small as possible). Check out pmbootstrap qemu --help
for more options, such as performance tweaks.
Qemu on Debian stretch
This also applies to Ubuntu Artful and below, Bionic likely will not have it enabled either - Launchpad bug. |
Qemu on Debian does not include SDL-support by default. To use pmbootstrap on Debian you have to do the following:
- Ensure that /etc/apt/sources.list contains a deb-src line for Debian buster or later.
sudo apt-get build-dep libvirglrenderer-dev/buster
(install build dependencies for libvirglrenderer)fakeroot apt-get -b source libvirglrenderer-dev/buster
(download and build libvirglrenderer)sudo dpkg -i libvirglrenderer0_0.6.0-2_amd64.deb libvirglrenderer-dev_0.6.0-2_amd64.deb
(install it)sudo apt-get build-dep qemu/buster
fakeroot apt-get -b source qemu/buster
- Install the appropriate qemu Debian packages which have been created in the current directory.