Skip to content

Instantly share code, notes, and snippets.

@bil9000
Created April 18, 2016 01:06
Show Gist options
  • Save bil9000/06d83cb9643ec1da8aae574a0cdc6e8e to your computer and use it in GitHub Desktop.
Save bil9000/06d83cb9643ec1da8aae574a0cdc6e8e to your computer and use it in GitHub Desktop.
etherpad-lite on ubuntu 14.04
#!/bin/bash
# This is a completly untested script hacked together from a history
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get install zip -y
wget http://github.com/ether/etherpad-lite/zipball/master
sudo apt-get install git -y
git clone https://github.com/ether/etherpad-lite.git
sudo apt-get install gzip git curl python libssl-dev pkg-config build-essential -y
wget https://nodejs.org/dist/v4.4.3/node-v4.4.3.tar.gz
tar -xzf node-v4.4.3.tar.gz
cd node-v4.4.3/
./configure
make
echo "I think at this point it is when it takes so long, that is best to go for a walk, or eat a sandwich."
sudo make install
cd ../etherpad-lite/bin/
./run.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment