From 183c425947ba04400a23b89de7703379c9f9dc84 Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Fri, 3 Oct 2025 15:55:23 +0000 Subject: [PATCH] Use 1GB memory when installing Arch Linux ISO Booting the Arch Linux ISO nowadays requires at least 955 MB of memory (from running `free -m` after booting it in VirtualBox). When the virtual machine only has 768 MB of RAM, extracting the initrd fails and the provisioning script aborts. Increase the memory to 1024 MB to fix this. --- arch-template.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch-template.json b/arch-template.json index e36b8d6..4aba9e4 100644 --- a/arch-template.json +++ b/arch-template.json @@ -24,7 +24,7 @@ "/usr/bin/bash ./enable-ssh.sh" ], "cpus": 1, - "memory": 768, + "memory": 1024, "disk_size": 20480, "ssh_username": "vagrant", "ssh_password": "vagrant", @@ -46,7 +46,7 @@ "/usr/bin/bash ./enable-ssh.sh" ], "cpus": 1, - "memory": 768, + "memory": 1024, "disk_size": 20480, "hard_drive_interface": "sata", "ssh_username": "vagrant", @@ -68,7 +68,7 @@ "/usr/bin/bash ./enable-ssh.sh" ], "cpus": 1, - "memory": 768, + "memory": 1024, "disk_size": 20480, "ssh_username": "vagrant", "ssh_password": "vagrant", @@ -89,7 +89,7 @@ "/usr/bin/bash ./enable-ssh.sh" ], "cpus": 1, - "memory": 768, + "memory": 1024, "disk_size": 20480, "ssh_username": "vagrant", "ssh_password": "vagrant",