Last active
December 15, 2015 23:29
-
-
Save ccollicutt/5340671 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 up apis --provider=vmware_fusion | |
Bringing machine 'apis' up with 'vmware_fusion' provider... | |
[apis] Verifying vmnet devices are healthy... | |
The VMware network device 'vmnet2' can't be started because | |
its routes collide with another device: 'vboxnet'. Please | |
either fix the settings of the VMware network device or stop the | |
colliding device. Your machine can't be started while VMware | |
networking is broken. | |
# | |
# vagrant file | |
# | |
$ cat Vagrantfile | |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.define :apis do |apis| | |
apis.vm.box = "centos65fusion" | |
#apis_config.vm.host_name = "apis" | |
apis.vm.network :private_network, ip: "192.168.33.130" | |
apis.vm.provider :vmware_fusion do |v| | |
v.vmx["memsize"] = "2048" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment