Gangmax Blog

Mount exFAT on Ubuntu 10.04

When I want to use a USB drive between Linux, Mac and Windows, I need to select a partition type first. FAT32’s limitation is that the file size: only 4GB and below can be supported. So I looked for the alternative and the answer is exFAT.

A Chef Server Installation Error

Install Chef server should be simple:

  1. Download the Chef server binary file from here. In my case, it’s “chef-server-11.0.8-1.el6.x86_64.rpm”.

  2. Run “rpm -Uvh chef-server-11.0.8-1.el6.x86_64.rpm” command with the root permission to install Chef server.

  3. Run “sudo chef-server-ctl reconfigure” command to do the configuration.

  4. Run “chef-server-ctl test” to verify.

  5. Done.

Install Chef Server and Client

Here is the definition from “http://docs.opscode.com“ of “Chef”:

Chef is a systems and cloud infrastructure automation framework that makes it easy to deploy servers and applications to any physical, virtual, or cloud location, no matter the size of the infrastructure. Each Chef organization is comprised of one (or more) workstations, a single server, and every node that will be configured and maintained by Chef. Cookbooks (and recipes) are used to tell Chef how each node in your organization should be configured. The chef-client (which is installed on every node) does the actual configuration.

In this article, I want to record how to install Chef server and client.