Last active
January 30, 2017 15:52
-
-
Save denisidoro/1e2b1243c8948f95e0fb557aace1b443 to your computer and use it in GitHub Desktop.
Codeanywhere CentOS setup
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 | |
# Update and install some binaries | |
sudo yum -y update | |
sudo yum -y install zsh curl wget git nano unzip | |
# Use temporary directory | |
mkdir ~/tmp | |
cd ~/tmp | |
# Install oh-my-zsh | |
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh | |
# Install tmux | |
curl https://gist.githubusercontent.com/rothgar/cecfbd74597cc35a6018/raw/1f96ddcae45419788b2076d965851e072c3f201c/install-tmux | bash | |
# Install htop | |
wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm | |
rpm -ihv epel-release-6-8.noarch.rpm | |
sudo yum -y install htop | |
# Install Leiningen | |
curl https://gist.githubusercontent.com/kessler/8289473/raw/bc78eb492fa045c66d0893735c43b0855bb4f742/gistfile1.sh | bash | |
# Cleanup | |
rm -rf ~/tmp | |
cd ~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment