Skip to content

Instantly share code, notes, and snippets.

@mstaack
Last active December 21, 2015 18:30
Show Gist options
  • Save mstaack/2b15c5c1710e713da201 to your computer and use it in GitHub Desktop.
Save mstaack/2b15c5c1710e713da201 to your computer and use it in GitHub Desktop.
setup.sh
# CORE DEBIAN/UBUNTU INSTALLATION SCRIPT
# RUN WITH wget -O- $LATEST_URL | /bin/bash
#basic stuff
apt update
locale-gen de_DE.UTF-8
apt install -y software-properties-common git screen htop atop iftop apachetop tcpdump mtr zsh autojump curl wget
apt upgrade -y
#php 7.0
LC_ALL=en_US.UTF-8 add-apt-repository ppa:ondrej/php-7.0 -y
apt update
apt install php7.0 -y
#glances
wget -O- http://bit.ly/glances | /bin/bash
#composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
chmod +x /usr/local/bin/composer
#oh my zsh shell
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment