Skip to content

Instantly share code, notes, and snippets.

@divanvisagie
Last active November 7, 2015 07:36
Show Gist options
  • Select an option

  • Save divanvisagie/8367bb395f30d8b0a82a to your computer and use it in GitHub Desktop.

Select an option

Save divanvisagie/8367bb395f30d8b0a82a to your computer and use it in GitHub Desktop.
A script for setting up ubuntu first time
#!/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