~bayindirh/vagrant-machines

37ae6ef7ee0b9683395eacb0eabc322ab6794140 — Hakan Bayindir 1 year, 21 days ago 9dd3d71
Feat: Increase video memory of VMs to 128MB.

To be able to use greater desktops, video RAM of both VMs is bumped to
128MB.
2 files changed, 6 insertions(+), 0 deletions(-)

M debian11-backintime-lab/Vagrantfile
M debian12-backintime-lab/Vagrantfile
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']