Skip to content

Commit a4b702a

Browse files
authored
fix: 更新说明同步中文说明
1 parent e0b47d9 commit a4b702a

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

docs/en/guide/pve/pve_windows.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,34 @@ outline: deep
44

55
# Setting Up Windows Visual Machine
66

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)
20+
21+
The main logic for this is in the
22+
23+
<https://raw.githubusercontent.com/oneclickvirt/pve/main/scripts/check_kernal.sh>
24+
25+
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+
735
## Using ISO Image with VirtIO for VM Setup
836

937
### 1. Download the Image
@@ -210,4 +238,4 @@ For subsequent network settings, refer to the network initialization tutorial me
210238

211239
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:
212240

213-
![wk](images/wk7.png)
241+
![wk](images/wk7.png)

0 commit comments

Comments
 (0)