Skip to content

Instantly share code, notes, and snippets.

@kylog
Last active December 19, 2015 02:19
Show Gist options
  • Save kylog/5882622 to your computer and use it in GitHub Desktop.
Save kylog/5882622 to your computer and use it in GitHub Desktop.
# Create and bring up machines (not sure why I needed to specify the provider, it already knows)
vagrant up u1004 --provider=vmware_fusion
vagrant up u1204 --provider=vmware_fusion
vagrant up centos64 --provider=vmware_fusion
# Use
vagrant ssh u1004 -c 'uname -a'
vagrant ssh u1204 -c 'uname -a'
vagrant ssh centos64 -c 'uname -a'
# Bring down and destroy machines
vagrant destroy u1004
vagrant destroy u1204
vagrant destroy centos64
# Vagrant won't tell you what's running, but vmrun will
export PATH="$PATH:/Applications//VMware Fusion.app/Contents/Library/"
vmrun list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment