Last active
December 21, 2015 07:19
-
-
Save westonwatson/6270751 to your computer and use it in GitHub Desktop.
amp node install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
apt-get -y install rpcbind nfs-common | |
apt-get -y install libfontconfig | |
apt-get -y install squid3 | |
mkdir /import | |
#mount -t nfs -o proto=tcp,port=2049 export.domain.com:/export /import | |
mv /etc/squid3/squid.conf squid.conf | |
apt-get -y install apache2-utils | |
apt-get -y install git | |
wget http://phantomjs.googlecode.com/files/phantomjs-1.9.1-linux-x86_64.tar.bz2 | |
tar -xvf phantomjs-1.9.1-linux-x86_64.tar.bz2 | |
sudo mv phantomjs-1.9.1-linux-x86_64 /usr/local/src/phantomjs | |
rm phantomjs-1.9.1-linux-x86_64.tar.bz2 | |
sudo ln -sf /usr/local/src/phantomjs/bin/phantomjs /usr/local/bin/phantomjs | |
phantomjs --version | |
cd /usr/local/src/ | |
sudo git clone git://github.com/n1k0/casperjs.git | |
sudo ln -sf /usr/local/src/casperjs/bin/casperjs /usr/local/bin/casperjs | |
casperjs --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment