Skip to content

Instantly share code, notes, and snippets.

@mindw
Last active April 3, 2016 12:46
Show Gist options
  • Select an option

  • Save mindw/796accec5e021a4f6e9d to your computer and use it in GitHub Desktop.

Select an option

Save mindw/796accec5e021a4f6e9d to your computer and use it in GitHub Desktop.
Installing devops stuff on ubuntu 14.04 trusty
# virtual box
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
sudo sh -c 'echo "deb http://download.virtualbox.org/virtualbox/debian trusty contrib" >> /etc/apt/sources.list.d/virtualbox.list'
sudo apt-get update
sudo apt-get install -y dkms virtualbox-5.0
# docker
sudo curl -sSL https://get.docker.com/ | sh
sudo usermod -aG docker vagrant
# vagrant
sudo bash -c 'echo deb http://vagrant-deb.linestarve.com/ any main > /etc/apt/sources.list.d/wolfgang42-vagrant.list'
sudo apt-key adv --keyserver pgp.mit.edu --recv-key AD319E0F7CFFA38B4D9F6E55CE3F3DE92099F7A4
sudo apt-get update
sudo apt-get install vagrant
# make sure out guest additions are up to date
vagrant plugin install vagrant-vbguest
vagrant plugin install vagrant-cachier
vagrant plugin install vagrant-gatling-rsync
vagrant plugin install vagrant-nfs_guest
vagrant plugin install vagrant-unify
vagrant plugin install vagrant-clean
# windows only
vagrant plugin install vagrant-rdp
vagrant plugin install vagrant-winnfsd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment