wiki/virt/vm/display.md

72 lines
1.1 KiB
Markdown
Raw Normal View History

2022-07-31 09:22:08 +00:00
---
title: Display
description: How to access a virtual machine's display
published: true
2022-08-01 10:20:02 +00:00
date: 2022-08-01T10:20:00.982Z
2022-07-31 09:22:08 +00:00
tags:
editor: markdown
dateCreated: 2022-07-31T09:22:05.854Z
---
# Display
2022-08-01 10:20:02 +00:00
A virtual display can be attached to a virtual machine to se the content of it. It is a must-have for in non-headless scenarios.
2022-07-31 09:22:08 +00:00
## Summary
2022-08-01 10:20:02 +00:00
* *to-be done. Add table here*.
2022-07-31 09:22:08 +00:00
## Specific displays
### VNC
* *to-be done*
### Spice
* *to-be done*
### SDL
The Simple DirectMedia Layer is a local-only low-latency display.
> *It is currently only avalable with virtual machines created using the QEMU/KVM **User Session** mode.*
{.is-warning}
2022-08-01 10:17:20 +00:00
* Example of an XML configuration, with OpenGL enabled. This example requires 3D-capable graphic card, such as ``virtio-gpu``.
2022-07-31 09:22:08 +00:00
```
<graphics type="sdl" display=":0.0">
<gl enable="yes"/>
</graphics>
```
The display resolution might not exceed that of your physical screen.
Mouse capture doesn't work
### Xephyr
* *to-be done*
### WebRTC
* *to-be done*
### Looking Glass
* *to-be done*
### Virtio-wayland
* *to-be done*
### egl-headless
* *to-be done*
### Dbus
* *to-be done*