Skip to content

Instantly share code, notes, and snippets.

@bdenning
Last active February 23, 2016 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdenning/2ae59861b6c3ccd077a7 to your computer and use it in GitHub Desktop.
Save bdenning/2ae59861b6c3ccd077a7 to your computer and use it in GitHub Desktop.
A script to configure a development environment on Fedora 23
#!/bin/bash
cd /root/
## Configure golang development software
dnf update -y
dnf install -y git emacs-nox golang make tmux
mkdir src lib bin
echo "export GOPATH=/root/" >> /root/.bashrc
source /root/.bashrc
## Grab emacs and tmux config files
curl -O https://gist.githubusercontent.com/bdenning/71dec3778772ed653aae/raw/9bcd50cdbc622d6fd971f6f24cc3db83069d85b8/.emacs
curl -O https://gist.githubusercontent.com/bdenning/aea289a3b4d194135555/raw/18f9fb35c64b217a6fdbb438797a9b88935cba2d/.tmux.conf
## Configure docker
dnf install -y docker
systemctl enable docker
systemctl start docker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment