Last active
December 19, 2015 02:19
-
-
Save kylog/5882622 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
| # 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