Last active
August 29, 2015 14:18
-
-
Save martin-magakian/0de3a24557e2e74d83d8 to your computer and use it in GitHub Desktop.
some vagrant command
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
#download all box (optional) | |
vagrant box add chef/debian-7.8 | |
vagrant box add ubuntu/trusty64 | |
vagrant box add neilinger/centos-7.0-x86_64 | |
vagrant box add chef/fedora-21 | |
#start all box | |
mkdir ~/devHouse/vagrant/debian7.8 && cd ~/devHouse/vagrant/debian7.8 | |
vagrant init chef/debian-7.8 | |
vagrant up | |
mkdir ~/devHouse/vagrant/ubuntu14.04 && cd ~/devHouse/vagrant/ubuntu14.04 | |
vagrant init ubuntu/trusty64 | |
vagrant up | |
mkdir ~/devHouse/vagrant/centos7.0 && cd ~/devHouse/vagrant/centos7.0 | |
vagrant init neilinger/centos-7.0-x86_64 | |
vagrant up | |
mkdir ~/devHouse/vagrant/fedora21 && cd ~/devHouse/vagrant/fedora21 | |
vagrant init chef/fedora-21 | |
vagrant up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment