Skip to content

Instantly share code, notes, and snippets.

@dizz
Created May 27, 2013 20:22
Show Gist options
  • Save dizz/5658907 to your computer and use it in GitHub Desktop.
Save dizz/5658907 to your computer and use it in GitHub Desktop.
vmware fusion specifics
Vagrant.configure("2") do |config|
config.vm.box = "precise64_vmware"
config.vm.box_url = "http://files.vagrantup.com/precise64_vmware.box"
config.vm.network :private_network, ip: "192.168.90.10"
config.vm.provider "vmware_fusion" do |vw|
# enable fusion gui on vm spawn
vw.gui = false
# set memory
vw.vmx['memsize'] = '1024'
# set nested virtualisation? allows for KVM on guests
vw.vmx['vhv.enable'] = "TRUE"
# set 3D acceleration
vw.vmx['mks.enable3d'] = "FALSE"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment