This repository was archived by the owner on Mar 14, 2021. It is now read-only.
forked from quickemu-project/quickemu
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.conf
More file actions
94 lines (73 loc) · 2.31 KB
/
example.conf
File metadata and controls
94 lines (73 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# This is a default configuration file for a VM. It includes all possible settings.
# This file gets updated often, so be sure to often check for updates.
# The ISO that contains the OS installer
iso="./isos/my_iso.iso"
# A second ISO that contains drivers or important files, for example.
# If you don't have any use of this, leave it empty.
second_iso=""
# The name of the virtual HDD file (MUST finish with .qcow2)
disk_img="local.qcow2"
# Option to emulate the virtual HDD's I/O
# This is recommanded if you have a slow HDD
# threads = Emulate I/O
# native = Use native I/O
emulate_disk_aio="native"
# The size of the virtual HDD
disk=40G
# The amount of RAM (in GigaBytes)
ram_gb=2G
# Prevent any changes to be made on the disk/snapshot
status_quo=0
# The amount of CPU cores
total_cores=4
# The guest's UI
# gtk (no GL support, realtime options) or sdl (with GL support,
# no realtime options) are recommanded options
# Note that GTK and spice-app currently don't offer GL support
# for guests
guest_ui=sdl
# Support for GL on the guest
# on = Enable GL on guest
# off = Disable GL on guest
guest_gl=on
# Support for VirGL (Virgil3D) on the guest
# on = Enable VirGL on guest
# off = Disable VirGL on guest
guest_virgl=off
# The width resolution of the guest
guest_xres=1280
# The height resolution of the guest
guest_yres=720
# The emulated CPU
# Note : use "host" to use your host's CPU on the VM
emulated_cpu=Nehalem-IBRS
# Enable virtualization inside the guest
# 0 = Don't enable virtualization
# 1 = Enable Intel IOMMU (VT-d)
# 2 = Enable AMD IOMMU (AMD-v)
enable_iommu=0
# Support for EFI bios on the guest
# 1 = Enable EFI
# 0 = Disable EFI
efi_bios=0
# Option to not create a virtual HDD (useful for Live CDs)
# 1 = Don't create a virtual HDD
# 0 = Create a virtual HDD
no_hdd=0
# Option to optimize guest
# 0 = Don't optimize system (for Linux guests)
# 1 = Optimize Windows
# 2 = Optimize Mac OS
system_optimization=0
# Option to force the use of the classic VGA adapter (useful
# for old operating systems)
# 1 = Force to use it
# 0 = Don't use it
force_classic_vga=0
# Option to set the classic VGA adapter's memory
# Note that this option only takes effect when the classic
# VGA adapter is enabled
vga_memory=64
# Request USB devices for USB passthrough
# Example : usb_devices=("046d:082d" "046d:085e")
usb_devices=()