Skip to content

Instantly share code, notes, and snippets.

@bryanwillis
Forked from chrisjlee/ubuntu-solr-drupal.sh
Created June 15, 2013 07:03
Show Gist options
  • Save bryanwillis/5787219 to your computer and use it in GitHub Desktop.
Save bryanwillis/5787219 to your computer and use it in GitHub Desktop.
#/bin/bash
sudo apt-get update; sudo apt-get upgrade -y;
sudo apt-get install zsh git-core vim wget curl rsync make unzip git-doc -y;
sudo tasksel install lamp-server;
sudo a2enmod rewrite;
sudo service apache2 restart;
mysql -uroot -e 'create database prod'
sudo apt-get install php5-gd php-pear libpcre3-dev libcurl3-dev -y;
# Install pecl uploader
sudo pecl install pecl_http
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment