Skip to content

Instantly share code, notes, and snippets.

@guyjin
guyjin / gist:5164102
Last active December 14, 2015 23:18
install Subversion 1.7* on CentOS
cd /usr/local/src/
wget http://archive.apache.org/dist/subversion/subversion-1.7.0.tar.gz
tar zxf subversion-1.7.0.tar.gz
If download link don’t work get the correct one from http://subversion.apache.org/download/
#Enter extracted source directory and download apache apr and apr-util before compiling subversion
cd /usr/local/src/subversion-1.7.0
wget http://rahulsoni.me/files/apr-util-1.3.12.tar.gz
wget http://rahulsoni.me/files/apr-1.4.5.tar.gz
@guyjin
guyjin / gist:5164068
Last active December 14, 2015 23:09
install newer python version on CentOS
//Install gcc and openssl & need to ensure you have bzip available.
yum install gcc-c++ openssl-devel bzip2 bzip2-devel
//Replace the version number (2.7.3) with the version you want.
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz
tar -zxvf Python-2.7.3.tgz
cd Python-2.7.3
./configure
@guyjin
guyjin / NodeJS install on CentOS
Created March 14, 2013 15:50
Installing Node.js on a CentOS based vagrant vm - ( Python 2.6+ is required as well. I think) :)
sudo yum install gcc-c++ make git
cd /usr/local/src/
sudo git clone git://github.com/joyent/node.git
cd node
sudo ./configure
sudo make
sudo make install