Last active
August 29, 2015 14:20
-
-
Save tusharmath/6c73192f5715ab609f16 to your computer and use it in GitHub Desktop.
NODE Provision (UBUNTU)
This file contains 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
### HOW TO USE | |
### curl -L PATH | sh | |
# Package Install | |
sudo apt-get install mosh | |
# Install via CURL | |
# Oh My ZSH | |
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh | |
sudo chsh -s /bin/zsh | |
zsh | |
# NVM Startup | |
curl https://raw.githubusercontent.com/creationix/nvm/v0.25.1/install.sh | bash | |
. ~/.nvm/nvm.sh | |
nvm install iojs | |
nvm alias node iojs | |
nvm alias default iojs | |
#TODO: SSH Keygen | |
zsh | |
ssh-keygen -t rsa -C "[email protected]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment