技術めも

ローカル開発環境の構築 MacOS X編

http://dotinstall.com/lessons/basic_localdev_mac

cd
mkdir MyVagrant
cd MyVagrant
mkdir mycentos
cd mycentos
vagrant init chef/centos-6.5
vi Vagrantfile
-- 編集開始
矢印キーで移動
#の上でxを押す
:wq
-- 編集終了
vagrant up

vagrant ssh
sudo yum -y install git
git clone https://github.com/dotinstallres/centos65.git
cd centos65
./run.sh
exit
vagrant suspend    VM一時停止
exit

Hosterの導入