Skip to content

Instantly share code, notes, and snippets.

@No9
Created September 11, 2015 23:56
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 No9/65545eb68de014e65855 to your computer and use it in GitHub Desktop.
Save No9/65545eb68de014e65855 to your computer and use it in GitHub Desktop.
Install node on a base illumOS install
#/bin/sh
pkgin in git
pkgin in gcc49
pkgin in gmake
export PATH=$PATH:/opt/local/gcc49/bin
git clone https://github.com/nodejs/node.git
cd node
#Make sure to change version
git checkout v4.0.0
./configure --with-dtrace
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment