Skip to content

Instantly share code, notes, and snippets.

@francolaiuppa
Created May 29, 2014 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save francolaiuppa/70726e02d29e5d0cca0a to your computer and use it in GitHub Desktop.
Save francolaiuppa/70726e02d29e5d0cca0a to your computer and use it in GitHub Desktop.
Setup Debian Wheezy for Dev (WIP)
sudo apt-get install mysql mysql-client php5 apache2 curl wget git tilda tmux php5-curl php5-gd php5-mcrypt parcellite zsh
#http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2%20x64.tar.bz2
#https://www.google.com/chrome/browser/ <-- Chrome browser (Firefox comes by default)
#http://ohmyz.sh/
# how to install node
sudo apt-get install python g++ make checkinstall fakeroot
src=$(mktemp -d) && cd $src
wget -N http://nodejs.org/dist/node-latest.tar.gz
tar xzvf node-latest.tar.gz && cd node-v*
./configure
sudo fakeroot checkinstall -y --install=no --pkgversion $(echo $(pwd) | sed -n -re's/.+node-v(.+)$/\1/p') make -j$(($(nproc)+1)) install
sudo dpkg -i node_*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment