QEMU: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
m Fix broken link to qemu documentation
m Bot: Replace deprecated source tag with syntaxhighlight
Line 118:
QEMU does not require the use of a configuration script like Bochs. An example usage of QEMU can be seen below:
 
<sourcesyntaxhighlight lang="bash">
qemu-system-i386 \
-accel tcg,thread=single \
Line 129:
-usb \
-vga std
</syntaxhighlight>
</source>
 
When running QEMU on a non-UNIX system, it may be necessary to use the <tt>-L</tt> command-line option to instruct QEMU where to find a BIOS image.
Line 157:
 
It is possible to redirect QEMU's monitor output to stdio using the following command-line option when invoking QEMU:
<sourcesyntaxhighlight lang="bash">
-monitor stdio
</syntaxhighlight>
</source>
 
 
Line 222:
 
Some files within the QEMU source code have commented lines of the form:
<sourcesyntaxhighlight lang="c">
// #define DEBUG_*
</syntaxhighlight>
</source>
 
Recompiling QEMU from source with this preprocessor variable defined will cause additional debugging information from the applicable file to be printed to stdout.