Last active
August 29, 2015 14:08
-
-
Save jonfk/bc7c7818969dca52f248 to your computer and use it in GitHub Desktop.
ubuntu setup vm 64-bit 14.04.1
This file contains 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
echo 'Grab a cup of tea. This is going to take a while...' | |
sudo apt-get update -qq | |
sudo apt-get upgrade -y | |
sudo apt-get update -qq | |
sudo apt-get install -yq emacs24 git vim curl wget openjdk-7-jdk tmux awesome awesome-extra xchat | |
git clone https://github.com/jonfk/dotfiles.git | |
cd dotfiles;./dotfiles -u; | |
cd | |
# Set default editor | |
echo 'export EDITOR=vim' >> .bashrc | |
# Install SBT | |
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list | |
sudo apt-get update | |
sudo apt-get install sbt | |
# Install golang | |
wget https://storage.googleapis.com/golang/go1.3.3.linux-amd64.tar.gz | |
sudo tar -C /usr/local -xzf go1.3.3.linux-amd64.tar.gz | |
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc | |
# Install Docker | |
curl -sSL https://get.docker.com/ubuntu/ | sudo sh | |
# Set startup script | |
echo 'setxkbmap dvorak' >> ~/startup.sh | |
echo 'vmware-user' >> ~/startup.sh | |
echo '$HOME/startup.sh' >> ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment