Last active
November 7, 2015 07:36
-
-
Save divanvisagie/8367bb395f30d8b0a82a to your computer and use it in GitHub Desktop.
A script for setting up ubuntu first time
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
| #!/bin/bash | |
| # add ppas | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-add-repository ppa:numix/ppa | |
| sudo add-apt-repository ppa:atareao/telegram | |
| sudo add-apt-repository ppa:nilarimogard/webupd8 | |
| # now we update our lists | |
| sudo apt-get update | |
| # install | |
| sudo apt-get install vim git ruby | |
| sudo apt-get install docker.io | |
| sudo apt-get install oracle-java8-installer | |
| sudo apt-get install numix-icon-theme numix-icon-theme-circle | |
| sudo apt-get install telegram syncwall | |
| # get linuxbrew | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/linuxbrew/go/install)" | |
| #export PATH="$HOME/.linuxbrew/bin:$PATH" | |
| #export MANPATH="$HOME/.linuxbrew/share/man:$MANPATH" | |
| #export INFOPATH="$HOME/.linuxbrew/share/info:$INFOPATH" | |
| #brew doctor | |
| #get nvm and setup node | |
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash | |
| #source ~/.bashrc | |
| #nvm install 4.2.1 | |
| #nvm alias default 4.2.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment