Skip to content

Instantly share code, notes, and snippets.

@kolosek
Last active July 12, 2019 07:01
Show Gist options
  • Save kolosek/f673c32399de2587f06b8eb650c70655 to your computer and use it in GitHub Desktop.
Save kolosek/f673c32399de2587f06b8eb650c70655 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Installing git"
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git -y
echo "Installing ubuntu basic software"
git clone https://gist.github.com/579167be758a9bc340e10ac7e7b1f644.git ubuntu-basic-software
cd ubuntu-basic-software
sudo chmod +x ubuntu-basic-software.sh
sudo ./ubuntu-basic-software.sh
sudo rm -f -r ubuntu-basic.software
echo "Installing docker"
git clone https://gist.github.com/44fb161eadb86db30d1552650c9ddc88.git docker
cd docker
sudo chmod +x docker-install.sh
sudo ./docker-install.sh
sudo rm -f -r docker
echo "Installing Node.js"
git clone https://gist.github.com/b166b4ba2ddcc293d06bfc9f4cdd1689.git node-js
cd node-js
sudo chmod +x ubuntu-install-nodejs-npm.sh
sudo ./ubuntu-install-nodejs-npm.sh
sudo rm -f -r node-js
echo "Installing Rails 18.04"
git clone https://gist.github.com/acfbdc9f3373c36a3ff40c04b325b3e9.git rails
cd rails
sudo chmod +x ubuntu-1804-basic-rails.sh
sudo ./ubuntu-1804-basic-rails.sh
sudo rm -f -r rails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment