# curl -L https://www.opscode.com/chef/install.sh | bash
# apt-get install ruby-dev
# gem install knife-solo
$ git clone git://github.com/opscode/chef-repo.git
$ knife configure
$ cd chef-repo $ knife cookbook create hello -o cookbooks
$ vi cookbooks/hello/recipes/default.rb
log "Hello, World!" package "zsh" do action :install end
$ vi localhost.json
{ "run_list" : [ "recipe[hello]" ] }
$ vi solo.rb
file_cache_path "/tmp/chef-solo" cookbook_path ["/home/syatsuzuka/work/chef-repo/cookbooks"]
$ sudo chef-solo -c solo.rb -j ./localhost.json
S.Yatsuzuka