mirror of
https://github.com/dockur/windows.git
synced 2026-08-24 15:48:59 +01:00
fix: Lower the amount of RAM required for Win11 (#2090)
This commit is contained in:
@@ -79,8 +79,8 @@ For a complete graphical desktop experience, see [WinBoat](https://winboat.app),
|
|||||||
|
|
||||||
- Docker or Podman on a Linux host with KVM support.
|
- Docker or Podman on a Linux host with KVM support.
|
||||||
- Docker Desktop or Podman (Desktop) on Windows 11 with nested virtualization enabled.
|
- Docker Desktop or Podman (Desktop) on Windows 11 with nested virtualization enabled.
|
||||||
- At least 4 GB of available RAM.
|
- At least 2 GB of available RAM.
|
||||||
- At least 64 GB of free disk space.
|
- At least 32 GB of free disk space.
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> Docker Desktop on Linux, macOS, and Windows 10 does not currently provide KVM access to containers and is therefore not supported.
|
> Docker Desktop on Linux, macOS, and Windows 10 does not currently provide KVM access to containers and is therefore not supported.
|
||||||
|
|||||||
+1
-1
@@ -940,7 +940,7 @@ getRequiredMemory() {
|
|||||||
|
|
||||||
case "$id" in
|
case "$id" in
|
||||||
"win11"* )
|
"win11"* )
|
||||||
echo 4294967296 ;;
|
echo 2147483648 ;;
|
||||||
"tiny11"* | "core11"* )
|
"tiny11"* | "core11"* )
|
||||||
echo 2147483648 ;;
|
echo 2147483648 ;;
|
||||||
"win10"* | "tiny10"* )
|
"win10"* | "tiny10"* )
|
||||||
|
|||||||
+2
-2
@@ -1476,8 +1476,8 @@ extractESD() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( count < 3 )); then
|
if (( count < 4 )); then
|
||||||
error "Invalid ESD file: expected at least 3 images, found $count."
|
error "Invalid ESD file: expected at least 4 images, found $count."
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user