From 51e3d68ab8b890b62744897b9a30315423b5e49c Mon Sep 17 00:00:00 2001 From: Earlopain Date: Fri, 23 Jul 2021 16:19:38 +0200 Subject: [PATCH] [Vagrant] Increase RAM The machine was swapping quite a bit, 600mb just on startup alone --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 9744d2cfe..6b18ea564 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure('2') do |config| config.vm.provider 'virtualbox' do |v| v.cpus = 2 - v.memory = 1280 + v.memory = 2048 if Vagrant::Util::Platform.windows? v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate//vagrant", "1"] end