From ea0d792715857edf0260ca5652bf668c64b0c639 Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Tue, 20 May 2025 22:08:38 +0800 Subject: [PATCH] fix --- docs/en/guide/incus/incus_windows.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/en/guide/incus/incus_windows.md b/docs/en/guide/incus/incus_windows.md index 7194ff05ea..59bf61e0ac 100644 --- a/docs/en/guide/incus/incus_windows.md +++ b/docs/en/guide/incus/incus_windows.md @@ -48,10 +48,12 @@ rm -f win.iso ## Create the VM and Mount the Installation ISO -Here I'm using a configuration of 3 CPUs, 4GB RAM, and 30GB storage. If you're using Windows 10 or newer versions, you'll need at least 4 CPUs, 6GB RAM, and 50GB storage. +Here I'm using a configuration of 3 CPUs, 5GB RAM, and 30GB storage. If you're using Windows 10 or newer versions, you'll need at least 4 CPUs, 6GB RAM, and 40GB storage. It's recommended to use more CPU and RAM than the resources I have set up now to avoid the system getting stuck to the point of crashing. +If you don't have enough memory, we recommend checking the Add SWAP item in the Other Useful Items section of this guide to add more virtual memory on your own. + ```shell # Initialize empty VM incus init winvm --empty --vm @@ -59,7 +61,7 @@ incus init winvm --empty --vm # Adjust root disk size, CPU, and memory incus config device override winvm root size=30GiB incus config set winvm limits.cpu=3 -incus config set winvm limits.memory=4GiB +incus config set winvm limits.memory=5GiB # Add TPM device (for Secure Boot/BitLocker support) incus config device add winvm vtpm tpm path=/dev/tpm0