From e965774217fe6c68fc341832e5db1dfae5a64bb2 Mon Sep 17 00:00:00 2001 From: Denver Prophit Jr Date: Tue, 16 May 2017 10:24:10 -0400 Subject: [PATCH 1/2] Add additional properties to virtualbox - No Sound - Display Memory - Clipboard and drag&drop - Other hardware glips --- Vagrantfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 76a899278..169359e60 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -108,6 +108,14 @@ Vagrant.configure("2") do |config| v.customize ["modifyvm", :id, "--cpus", vvv_config['vm_config']['cores']] v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] v.customize ["modifyvm", :id, "--natdnsproxy1", "on"] + v.customize ["setextradata", "global", "GUI/MaxGuestResolution", "any"] + v.customize ["setextradata", :id, "CustomVideoMode1", "1024x768x32"] + v.customize ["modifyvm", :id, "--ioapic", "on"] + v.customize ["modifyvm", :id, "--rtcuseutc", "on"] + v.customize ["modifyvm", :id, "--accelerate3d", "on"] + v.customize ["modifyvm", :id, "--clipboard", "bidirectional"] + v.customize ["modifyvm", :id, "--audio", "none"] + v.customize ["modifyvm", :id, "--draganddrop", "hosttoguest"] # Set the box name in VirtualBox to match the working directory. vvv_pwd = Dir.pwd From bf3b2271c98b40d37c5c3f82eabf5b0dc362799f Mon Sep 17 00:00:00 2001 From: Denver Prophit Jr Date: Tue, 16 May 2017 22:37:59 -0400 Subject: [PATCH 2/2] Remove non-gui options for virtualbox --- Vagrantfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 169359e60..84352bd6d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -108,14 +108,8 @@ Vagrant.configure("2") do |config| v.customize ["modifyvm", :id, "--cpus", vvv_config['vm_config']['cores']] v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] v.customize ["modifyvm", :id, "--natdnsproxy1", "on"] - v.customize ["setextradata", "global", "GUI/MaxGuestResolution", "any"] - v.customize ["setextradata", :id, "CustomVideoMode1", "1024x768x32"] - v.customize ["modifyvm", :id, "--ioapic", "on"] v.customize ["modifyvm", :id, "--rtcuseutc", "on"] - v.customize ["modifyvm", :id, "--accelerate3d", "on"] - v.customize ["modifyvm", :id, "--clipboard", "bidirectional"] v.customize ["modifyvm", :id, "--audio", "none"] - v.customize ["modifyvm", :id, "--draganddrop", "hosttoguest"] # Set the box name in VirtualBox to match the working directory. vvv_pwd = Dir.pwd