Created
May 27, 2013 20:22
-
-
Save dizz/5658907 to your computer and use it in GitHub Desktop.
vmware fusion specifics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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