M debian11-backintime-lab/Vagrantfile => debian11-backintime-lab/Vagrantfile +3 -0
@@ 50,6 50,9 @@ Vagrant.configure(2) do |config|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
+ # Increase the Video RAM to 128MB to allow bigger desktops:
+ vb.customize ["modifyvm", :id, "--vram", "128"]
+
# Change the network cards to VirtIO for better performance:
# Two network cards since I also have a host-only network.
vb.customize ["modifyvm", :id, '--nictype1', 'virtio']
M debian12-backintime-lab/Vagrantfile => debian12-backintime-lab/Vagrantfile +3 -0
@@ 54,6 54,9 @@ Vagrant.configure(2) do |config|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
+ # Increase the Video RAM to 128MB to allow bigger desktops:
+ vb.customize ["modifyvm", :id, "--vram", "128"]
+
# Change the network cards to VirtIO for better performance:
# Two network cards since I also have a host-only network.
vb.customize ["modifyvm", :id, '--nictype1', 'virtio']