You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/guide/pve/pve_windows.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,34 @@ outline: deep
4
4
5
5
# Setting Up Windows Visual Machine
6
6
7
+
## Choose KVM virtualization or QEMU's TCG emulation at startup
8
+
9
+
The host itself, if it supports nested virtualization, can use ```host``` or ```kvm64``` or ```qemu64``` type CPUs
10
+
11
+
In terms of performance, ```host``` > ```kvm64``` > ```qemu64```
12
+
13
+
The ```qemu``` type of virtualization has a lot of performance loss
14
+
15
+
If you don't support nested virtualization, you can only use ```qemu64``` type CPU, and you need to change ```KVM hardware virtualization``` in ```Options``` before you start the VM
16
+
17
+
Set it to ```no``` to uncheck ```Enabled[enabled]```.
18
+
19
+
If you're really not sure if your machine supports nested virtualization, then check System and Hardware Configuration Requirements --> Detecting the Environment Detecting to ensure it's available (with attempts to enable the feature)
It is recommended to use PVE's System and Hardware Requirements --> Environment Detection in this tutorial for one-click detection, or the following detection logic:
26
+
27
+
```egrep -c '(vmx|svm)' /proc/cpuinfo``` if it is 1
28
+
29
+
```cat /sys/module/kvm_intel/parameters/nested``` if it exists and is 1
30
+
31
+
```lsmod | grep -q kvm``` if it is loaded.
32
+
33
+
If all of these are supported, choose the ```host``` type to be 100% problem-free, in other cases there may be unknown errors try it yourself.
34
+
7
35
## Using ISO Image with VirtIO for VM Setup
8
36
9
37
### 1. Download the Image
@@ -210,4 +238,4 @@ For subsequent network settings, refer to the network initialization tutorial me
210
238
211
239
In the ProxmoxVE web interface, manually click on the corresponding `CD` in the `Hardware` section, select `Remove`, and then restart the virtual machine. This way, you can use it directly:
0 commit comments