https://www.vagrantup.com/ から vagrantをDLしてインストール
https://www.virtualbox.org/wiki/Downloads からvirtualboxをDLしてインストール
ローカルマシン
$ mkdir vagrant
$ cd vagrant
$ vagrant init
適当に好きなディレクトリを作成し、そのディレクトリ上でvagrant initする
Vagrantfileが出来上がるので、config.vm.boxを書き換える
https://atlas.hashicorp.com/boxes/search ここの中から選べば vagrant box add hoge url はいらない。
config.vm.box = "chef/centos-7.0"
$ vagrant up
http://lab.raqda.com/vagrant/index.html
これ読むべし!
https://www.virtualbox.org/wiki/Downloads からvirtualboxをDLしてインストール
ローカルマシン
$ mkdir vagrant
$ cd vagrant
$ vagrant init
適当に好きなディレクトリを作成し、そのディレクトリ上でvagrant initする
Vagrantfileが出来上がるので、config.vm.boxを書き換える
https://atlas.hashicorp.com/boxes/search ここの中から選べば vagrant box add hoge url はいらない。
config.vm.box = "chef/centos-7.0"
$ vagrant up
http://lab.raqda.com/vagrant/index.html
これ読むべし!