Skip to content

Instantly share code, notes, and snippets.

@hkorpi
Last active March 21, 2017 17:20
Show Gist options
  • Save hkorpi/1f443007e9d3a56ff7c85ce59f9bb6b8 to your computer and use it in GitHub Desktop.
Save hkorpi/1f443007e9d3a56ff7c85ce59f9bb6b8 to your computer and use it in GitHub Desktop.
Common development tools for ubuntu
#!/bin/bash
# this installs the common dev tools - this can be executed using curl:
# source <(curl -s https://gist.githubusercontent.com/hkorpi/1f443007e9d3a56ff7c85ce59f9bb6b8/raw/3391b179857e55afe64aa75dc00d43e225306130/dev-install.sh)
# install openssh
sudo apt-get install openssh-server
# install tmux
sudo apt-get install tmux
# install chrome
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
sudo apt-get install google-chrome-stable
# install java development kit
sudo apt-get install openjdk-8-jdk
# install maven
sudo apt-get install maven
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment