Lines Matching full:qemu

8 by QEMU developers.
35 targeting QEMU by detecting unexpected branches during execution. QEMU `actively
41 In QEMU, a device is a piece of hardware visible to the guest. Examples include
44 QEMU is able to emulate a CPU, and all the hardware interacting with it,
45 including `many devices<device-emulation>`. When QEMU runs a virtual machine
53 implementation of UEFI standard. QEMU virtual machines that boot a UEFI firmware
59 QEMU implements a `gdb server <GDB usage>`, allowing gdb to attach to it and
61 debugging the guest code that is running inside QEMU.
69 to build QEMU.
74 The `QEMU Guest Agent <qemu-ga>` is a daemon intended to be run within virtual
75 machines. It provides various services to help QEMU to interact with it.
93 Host is the architecture on which QEMU is running on, which is native.
100 manage a virtual machine. QEMU is a virtualizer, that interacts with various
103 In the context of QEMU, an hypervisor is an API, provided by the Host OS,
113 QEMU's system emulation models many different types of hardware. A machine model
116 ``-machine`` of qemu-system. Our machine models can be found on this `page
122 QEMU can save and restore the execution of a virtual machine between different
128 The `QEMU Network Block Device server <qemu-nbd>` is a tool that can be used to
129 mount and access QEMU images, providing functionality similar to a loop device.
134 This is `where <https://wiki.qemu.org/Contribute/MailingLists>`_ all the
139 <https://gitlab.com/qemu-project/qemu/-/issues>`_ tracker is the best place.
147 physical addresses and managing memory protection. QEMU system mode is named
151 QEMU user-mode does not implement a full software MMU, but "simply" translates
158 The `QEMU Monitor <QEMU monitor>` is a text interface which can be used to interact
161 QMP stands for QEMU Monitor Protocol and is a json based interface.
179 One key advantage of QEMU plugins is that they can be used to perform
185 `Patchew <https://patchew.org/QEMU/>`_ is a website that tracks patches on the
192 included in a PR (Pull Request) that the project maintainer will merge into QEMU
195 The QEMU project doesn't currently expect most developers to directly submit
201 QEMU Copy On Write is a disk format developed by QEMU. It provides transparent
206 QEMU chapter
209 `QEMU (Quick Emulator) <https://www.qemu.org/>`_ is a generic and open source
215 :ref:`QEMU Object Model <qom>` is an object oriented API used to define
216 various devices and hardware in the QEMU codebase.
221 :ref:`Record/replay <replay>` is a feature of QEMU allowing to have a
228 default. There is a work in progress to integrate it in QEMU codebase for
234 QEMU System mode provides a virtual model of an entire machine (CPU, memory and
239 QEMU System mode is called :ref:`softmmu <softmmu>` as well.
246 The term "target" can be ambiguous. In most places in QEMU it is used as a
249 architecture which QEMU is running on, i.e. the :ref:`host`.
254 TCG is the QEMU `Tiny Code Generator <tcg>`. It is the JIT (just-in-time)
257 It is one of the accelerators supported by QEMU, and supports a lot of
263 QEMU User mode can launch processes compiled for one CPU on another CPU. In this
264 mode the CPU is always emulated. In this mode, QEMU translate system calls from
272 system calls, but targeting an hypervisor, which happens to be QEMU in our
280 outside of QEMU itself.