Skip to content

Instantly share code, notes, and snippets.

@masarufuruya
Created May 22, 2014 17:27
Show Gist options
  • Save masarufuruya/10d1f6687ec00c931498 to your computer and use it in GitHub Desktop.
Save masarufuruya/10d1f6687ec00c931498 to your computer and use it in GitHub Desktop.
VagrantでCentOS6.xの環境をサクッと用意する ref: http://qiita.com/masarufuruya/items/a690dcd4dd4c4aabc6fc
$ mkdir host1
$ cd host1
$ vagrant init
$ vagrant box add ansible_test https://github.com/2creatives/vagrant-centos/releases/download/v0.1.0/centos64-x86_64-20131030.box
$ vi Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "ansible_test"
$ vagrant up
$ vagrant ssh
vagrant plugin install vagrant-vbguest
$ vagrant reload
vagrant plugin install vagrant-vbguest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment