Created
August 6, 2016 12:58
-
-
Save xdream86/9d3fc5ea3a5cb62b9ac46007929edac8 to your computer and use it in GitHub Desktop.
packages_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
#!/bin/sh | |
apt-get update | |
# docker | |
wget -qO- https://get.docker.com/ | sh | |
# compose | |
curl -L https://github.com/docker/compose/releases/download/1.8.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose | |
chmod +x /usr/local/bin/docker-compose | |
# emacs | |
sudo apt-get install emacs | |
# oh-my-zsh | |
sudo apt-get install zsh | |
sudo apt-get install git-core | |
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh | |
chsh -s `which zsh` | |
sudo shutdown -r 0 | |
#etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment