Skip to content

Instantly share code, notes, and snippets.

@msmith-thrillist
Forked from zellyn/vagrant.org
Created September 21, 2011 21:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save msmith-thrillist/1233347 to your computer and use it in GitHub Desktop.
Save msmith-thrillist/1233347 to your computer and use it in GitHub Desktop.
Setting up a CentOS 5.4 base box for Vagrant

Installing CentOS

Notes

These instructions install ruby and rubygems from source, not from RPMs. For instructions on installing from RPMs, look at something like http://wiki.opscode.com/display/chef/Installation+on+RHEL+and+CentOS+5+with+RPMs or http://mykestubbs.com/blog/2010/03/chef-installation-on-centos-54.html

Create a new VirtualBox machine

  • Name: vagrant-centos
  • Operating System: Linux
  • Version: Red Hat (64bit)
  • Base Memory Size: 768 MB
  • Create new hard disk
  • Dynamically expanding storage
  • 20 GB
  • Enable IO APIC
  • Disable Audio
  • Disable USB
  • Make sure network is set to NAT
  • Attach the net install ISO to the CDROM
  • Run it

Run through install procedure

  • (mode: linux text)
  • Installation Method: HTTP
  • Disable IPv6, leave IPv4 enabled with DHCP
  • HTTP Setup:
    • Web site name: mirrors.kernel.org
    • CentOS directory: /centos/5.4/os/i386
  • Use text mode
  • Initialize drive and erase data: yes
  • Configure network: yes
    • Set hostname to vagrant-centos
  • Root password: vagrant
  • Customize software installation:
    • Unselect All
  • Remove CDRom media
  • Reboot
  • Disable firewall
  • Run Services:
    • Disable cups

Add stuff

yum install curl ftp rsync sudo time wget which

yum install gcc bzip2 make kernel-devel-`uname -r`

yum install gcc-c++ zlib-devel openssl-devel readline-devel sqlite3-devel

Remove stuff

yum erase wireless-tools gtk2 libX11 hicolor-icon-theme avahi freetype bitstream-vera-fonts

VirtualBox Additions

  • Devices -> Install Guest Additions…
  • sudo mount -o ro -t iso9660 /dev/cdrom /mnt
  • sudo sh /mnt/VBoxLinuxAdditions.run
  • Error about Xwindows install - should be okay (?)

vagrant user

groupadd admin useradd -G admin vagrant passwd vagrant

visudo

echo ‘export PATH=$PATH:/usr/sbin:/sbin’ >> ~vagrant/.bashrc

Log out as root, log in as vagrant

Install a modern ruby (as vagrant user)

wget http://ftp.ruby-lang.org/pub/ruby/ruby-1.9.2-p290.tar.gz

tar -zxvf ruby-1.9.2-p290.tar.gz

cd ruby-1.9.2-p290

./configure –with-openssl-dir=/usr/lib/openssl

make

sudo make install

cd

wget http://production.cf.rubygems.org/rubygems/rubygems-1.3.6.tgz

tar -xzvf rubygems-1.3.6.tgz

cd rubygems-1.3.6

sudo ruby setup.rb –no-rdoc –no-ri

cd

rm -rf ruby*

Install chef

sudo gem install chef –no-rdoc –no-ri

Add Vagrant’s “insecure” public key

mkdir .ssh chmod 755 .ssh curl http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub > .ssh/authorized_keys chmod 644 .ssh/authorized_keys

Fiddle with MAC addres

  • sudo /sbin/ifconfig
  • write down MAC address of eth0 (eg. 08:00:27:60:AE:41)

sudo yum clean headers packages dbcache expire-cache

  • shut down vm

Export and package

Follow instructions on http://vagrantup.com/docs/base_boxes.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment