Created
November 29, 2016 13:18
-
-
Save cmendesce/8a9412b0a817173271c0393fe903e03d to your computer and use it in GitHub Desktop.
setup for a simple development ubuntu installation
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
| #general stuff | |
| sudo apt install git zsh curl google-chrome-stable unzip xclip -y | |
| #chrome | |
| wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
| sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
| sudo apt update | |
| sudo apt install google-chrome-stable -y | |
| #visual studio code | |
| wget -O vscode.deb https://az764295.vo.msecnd.net/stable/7ba55c5860b152d999dda59393ca3ebeb1b5c85f/code_1.7.2-1479766213_amd64.deb | |
| sudo dpkg -i vscode.deb | |
| #java | |
| sudo apt install openjdk-8-jdk-headless maven -y | |
| # nodejs | |
| curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
| sudo apt install nodejs npm -y | |
| #vagrant | |
| sudo apt install virtualbox -y | |
| sudo apt install vagrant -y | |
| sudo apt install virtualbox-dkms -y | |
| #docker | |
| curl -sSL https://get.docker.com | sh | |
| sudo -i | |
| curl -L "https://github.com/docker/compose/releases/download/1.8.1/docker-compose-$(uname -s)-$(uname -m)" > /usr/local/bin/docker-compose | |
| chmod +x /usr/local/bin/docker-compose | |
| exit | |
| sudo usermod -aG docker ubuntu | |
| sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment