Skip to content

Instantly share code, notes, and snippets.

@hiphopsmurf
Forked from ubinix-warun/install-cloud9.bash
Last active November 25, 2015 02:14
Show Gist options
  • Save hiphopsmurf/a6ef5144dbd2e94653f1 to your computer and use it in GitHub Desktop.
Save hiphopsmurf/a6ef5144dbd2e94653f1 to your computer and use it in GitHub Desktop.
Install Cloud9 IDE on Ubuntu 12.04, Raspberry Pi
cd ~
sudo npm install -g sm
sudo apt-get install git-core libxml2-dev
git clone https://github.com/ajaxorg/cloud9.git cloud9
cd ./cloud9
sudo sm install
...
sudo su
apt-get install build-essential
cd /usr/local/src
wget http://nodejs.org/dist/v0.8.19/node-v0.8.19.tar.gz
tar zxvf node-v0.8.19.tar.gz
cd node-v0.8.19
./configure
make
...
make install
...
node --version
v0.8.19
npm --version
1.2.10
exit
mkdir ~/workspace
cd ~/cloud9
bin/cloud9.sh -l 0.0.0.0 -p 3131 -w ~/workspace --username sample --password sample
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment