Skip to content

Commit

Permalink
Add additional properties to virtualbox
Browse files Browse the repository at this point in the history
- No Sound
- Display Memory
- Clipboard and drag&drop
- Other hardware glips
  • Loading branch information
inetbiz authored May 16, 2017
1 parent 19c4fbf commit e965774
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e965774

Please sign in to comment.